使用Matlab(符号数学工具箱),符号值占用112字节的内存.人们可以通过whos命令看到这一点.
我知道根据IEEE 754标准存储浮点值(在Matlab的数值框架中).因此,使用8个字节(双精度):尾数为52位,符号为1位,指数为11位.
符号数字的存储细节怎么样?使用什么标准?
我使用python 2.7.8与Anaconda发行版,我有scipy的问题.设A是稀疏矩阵; 我想计算它的特征值,但如果我写:
import scipy
scipy.sparse.linalg.eigs(A)
Run Code Online (Sandbox Code Playgroud)
我收到了错误
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'module' object is not callable
Run Code Online (Sandbox Code Playgroud)
问题是什么?(scipy的版本是0.15.1)