由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - matlab中复数运算如何增加有效位数。
相关主题
gcc和vc有没有VC++下的矩阵运算的库类?
Why should i include .cpp instead of .h请问一下怎么把自己写的类转成STL的类?
c++ 里面 @ 不能 overload?简单c++问题,大家练练手
你们ee读一个master by course要五年吗?发现gcc有这么个warning
这就是OO的精髓?[合集] 关于浮点数计算和underflow
再问个关于中止程序的问题[合集] 请问C 里面有什么针对矩阵运算的库吗?
请问:稀疏矩阵运算有什么好的C++库?[合集] 请问VC++里面有自带的矩阵运算的库函数吗?
C语言里的<<=是什么意思?C++debug遇到的问题
相关话题的讨论汇总
话题: imaginary话题: matlab话题: part话题: 有效位数话题: values
进入Programming版参与讨论
1 (共1页)
h****e
发帖数: 216
1
我计算的结果都是0.0001之类的
谢谢
a****l
发帖数: 8211
2
it's the display problem, not calculation problem.

【在 h****e 的大作中提到】
: 我计算的结果都是0.0001之类的
: 谢谢

k**f
发帖数: 372
3

Some values, such as 0.1, cannot be represented precisely in binary. So if
you add 0.1 10 times and expecting the sum to be exactly 1, then you will be
disappointed.
If in your application, you know that the imaginary part of the complex is
zero in theory, you can cast the values to real value and dump the minuscule
imaginary part.
One such example is that when you take fft of a real signal in MATLAB, and
then take ifft of the spectrum, you can hardly get a result that all the
imaginary part of

【在 h****e 的大作中提到】
: 我计算的结果都是0.0001之类的
: 谢谢

c******r
发帖数: 132
4
I agree, "format long" will give more significant digits.

【在 a****l 的大作中提到】
: it's the display problem, not calculation problem.
h****e
发帖数: 216
5
thanks。
"format long" works.
1 (共1页)
进入Programming版参与讨论
相关主题
C++debug遇到的问题这就是OO的精髓?
讲STL的好书推荐再问个关于中止程序的问题
弱人再问一个关于Java的问题请问:稀疏矩阵运算有什么好的C++库?
求教vpa后画图问题C语言里的<<=是什么意思?
gcc和vc有没有VC++下的矩阵运算的库类?
Why should i include .cpp instead of .h请问一下怎么把自己写的类转成STL的类?
c++ 里面 @ 不能 overload?简单c++问题,大家练练手
你们ee读一个master by course要五年吗?发现gcc有这么个warning
相关话题的讨论汇总
话题: imaginary话题: matlab话题: part话题: 有效位数话题: values