Imag, real function error
Afficher commentaires plus anciens
when I try to use the imag or real functions I get an error saying 'Subscript indices must either be real positive integers or logicals.' I don't get this when I use the isreal or abs functions. Why is this?
3 commentaires
James Tursa
le 12 Sep 2017
Please post your code that generates this error.
Sean Pitre
le 12 Sep 2017
Modifié(e) : Walter Roberson
le 12 Sep 2017
James Tursa
le 12 Sep 2017
Try clearing all variables first, and then re-try your code to confirm that it is a variable naming issue or not.
Réponses (2)
James Tursa
le 12 Sep 2017
Modifié(e) : James Tursa
le 12 Sep 2017
0 votes
It could be that you have inadvertently created variables with the name "real" or "imag" that are shadowing the functions real and/or imag.
Star Strider
le 12 Sep 2017
Modifié(e) : Star Strider
le 12 Sep 2017
My guess is that you used ‘imag’ and ‘real’ as variables somewhere earlier in your code. The solution is to find those variables and rename them. (The builtin (link) function can shed light on this.)
Example —
imag = 42;
x = 1 + 2*j;
A1 = builtin('imag', x)
A2 = imag(x)
yields:
A1 =
2.0000e+000
For ‘A2’:
Subscript indices must either be real positive integers or logicals.
Error in FileName (line #####)
A2 = imag(x)
3 commentaires
Sean Pitre
le 12 Sep 2017
James Tursa
le 12 Sep 2017
What does this show?
which real
which imag
Star Strider
le 12 Sep 2017
The which function can be helpful.
Note all the results from:
which real -all
If the first result is:
real is a variable.
you’ve found the problem.
Catégories
En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!