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

James Tursa
James Tursa 2017년 9월 12일
Please post your code that generates this error.
Sean Pitre
Sean Pitre 2017년 9월 12일
편집: Walter Roberson 2017년 9월 12일
Its a two line test code. Like,
X=2+3i
Y=real(x) or imag(x).
Even if I do it directly like Real(2+3i) I get the error
James Tursa
James Tursa 2017년 9월 12일
Try clearing all variables first, and then re-try your code to confirm that it is a variable naming issue or not.

댓글을 달려면 로그인하십시오.

답변 (2개)

James Tursa
James Tursa 2017년 9월 12일
편집: James Tursa 2017년 9월 12일

0 개 추천

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
Star Strider 2017년 9월 12일
편집: Star Strider 2017년 9월 12일

0 개 추천

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

Sean Pitre
Sean Pitre 2017년 9월 12일
The code I have is two lines long. I just declare a variable x as some complex number then try to get the real part of that number. I'll check again to see if maybe I missed something. My code is just x = 2 + 3i y = real(x)
What does this show?
which real
which imag
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.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Convert Image Type에 대해 자세히 알아보기

질문:

2017년 9월 12일

댓글:

2017년 9월 12일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by