Why am I getting negative zero as an eigen value while using the 'eig' function?
1 次查看(过去 30 天)
显示 更早的评论
Hi all
I ran the following code which makes use of the 'eig' function and I encountered a negative zero in the value printed out by it. Is this valid? If yes, what does the negative sign signify?
a=[1 2 3;1 2 3; 1 2 3]
eig(a)
This gives me the following output:
ans =
6.0000
0.0000
-0.0000
Thanks in advance.
0 个评论
采纳的回答
Steven Lord
2018-4-6
Change your display format and you'll see that the third element of that vector is very small in magnitude and negative but not exactly 0.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!