How can I separate complex numbers from the other in a matrix?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
masoud jiryaei
el 10 de Mayo de 2019
Comentada: the cyclist
el 18 de Jun. de 2019
Hello
I have a matrix that includes: complex numbers , natural numbers and ...
I want to separate the complex numbers from the other
How can I do this ?
Is there any order in MATLAB ?
0 comentarios
Respuesta aceptada
the cyclist
el 10 de Mayo de 2019
Editada: the cyclist
el 10 de Mayo de 2019
% Example data
z = [1 1+2*i 3 4+5*i]
mask = imag(z)==0;
The variable mask is a logical variable that is TRUE at the locations of the numbers that do not have an imaginary component, and FALSE otherwise.
You'll need to be careful if you have imaginary parts that are within floating-point precision of zero. You might need to use a tolerance, rather than strict equality.
Más respuestas (0)
Ver también
Categorías
Más información sobre Numeric Types 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!