Why does Isreal function give wrong answer after using collect function
1 回表示 (過去 30 日間)
古いコメントを表示
In the code below, the second function isreal gives wrong answer after using collect function.
clear all;
close all;
clc;
syms w real;
m=w^3-1i*w^2+2*w-1i;
mre=real(m)
isreal(mre)
mrecol=collect(real(m),w)
isreal(mrecol)
0 件のコメント
採用された回答
Walter Roberson
2013 年 3 月 28 日
There is no isreal() function for sym specifically, so the result of both isreal() calls is undefined. But double check class(mre) and class(mrecol)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Special Values についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!