ONLINE: http://www.wolframalpha.com/ GPL: segamath: http://www.sagemath.org/ famous and not free: mathematica: http://www.wolfram.com/mathematica/?source=nav matlab: https://cn.mathworks.com/products/matlab.html 来自网络的评价: mathematica很学院很严谨很漂亮. matlab很…
Numpy等Python科学计算包的安装与配置 参考: 1.下载并安装 http://www.jb51.net/article/61810.htm 1.安装easy_install,就是为了我们安装第三方扩展包更容易 首先下载easy_install的安装包,下载地址:http://pypi.python.org/pypi/setuptools 在python下运行ez_setup.py 2.添加环境变量python安装地址\scripts python的安装目录中生成scripts目录,其中有…
Octave是一个旨在提供与Matlab语法兼容的开放源代码科学计算及数值分析的工具,是Matlab商业软件的一个强有力的竞争产品. 参考:[ML:Octave Installation] General Installation files for all platforms are available at the GNU Octave Repository on SourceForge. The Gnu Octave Wiki has installation instructions f…
安装 首先安装基本的桌面环境: $ sudo pacman -S lxde 奇怪的是默认并没有安装面板lxpanel,而且源里也没有,只好从AUR安装之: $ yaourt -S lxpanel-svn (注,几天后发现,lxpanel出现在官方源里了) 然后安装wm,我选择了openbox(如果只使用compiz,openbox也可以不安装): $ sudo pacman -S openbox 然后根据提示把/etc/xdg/openbox下的menu.xml和rc.xml复制到~/.conf…
首先安装vmware-workstation(从aur中) $yaourt vmware-workstation 安装linux-headers $pacman -S linux-headers 然后添加Systemd服务,建立文件,并将添加如下内容 #vim /etc/systemd/system/vmware.service [Unit] Description=VMware daemon Requires=vmware-usbarbitrator.service Before=vmware…
一.安装FFTW 1.下载安装包 下载地址:http://www.fftw.org/download.html  2.编译安装 tar -zxvf fftw-3.3.10.tar.gz cd fftw-3.3.10/ ./configure --prefix=/BIGDATA2/nscc_sci_1/xujb/fftw --enable-threads make make install 3.测试例子 g++ test_fftw.cpp -o test_fftw -lfftw3 \ -L/BIG…
Python 科学计算 作者 J.R. Johansson (robert@riken.jp) http://dml.riken.jp/~rob/ 最新版本的 IPython notebook 课程文件 http://github.com/jrjohansson/scientific-python-lectures. 作者其他的 notebook http://jrjohansson.github.com. 一.实验说明 本课主要介绍科学计算,实验环境的安装以及使用等内容. 1. 环境登录 无需…
作者 J.R. Johansson (robert@riken.jp) http://dml.riken.jp/~rob/ 最新版本的 IPython notebook 课程文件 http://github.com/jrjohansson/scientific-python-lectures. 作者其他的 notebook http://jrjohansson.github.com. 一.实验说明 本课主要介绍科学计算,实验环境的安装以及使用等内容. 1. 环境登录 无需密码自动登录,系统用户名…
sklearn实战-乳腺癌细胞数据挖掘(博主亲自录制视频教程) https://study.163.com/course/introduction.htm?courseId=1005269003&utm_campaign=commission&utm_source=cp-400000000398149&utm_medium=share 医药统计项目可联系 QQ:231469242 http://www.kancloud.cn/wizardforcel/scipy-lecture-n…
安装matplotlib: pip install matplotlib 背景: 目的:要用Python下的DBSCAN聚类算法. scikit-learn 是一个基于SciPy和Numpy的开源机器学习模块,包括分类.回归.聚类系列算法,主要算法有SVM.逻辑回归.朴素贝叶斯.Kmeans.DBSCAN等,目前由INRI 资助,偶尔Google也资助一点. SciPy是一个开源的Python算法库和数学工具包,SciPy包含的模块有最优化.线性代数.积分.插值.特殊函数.快速傅里叶变换.信号处…