Why does Isreal function give wrong answer after using collect function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Walter Roberson
el 28 de Mzo. de 2013
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Special Values en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!