Plot sinusoid equation of x(t)
이전 댓글 표시
I am trying to solve this problem using a MATLAB. I have attached the problem itself along with the code I have written so far. When I run the code I get an error that says 'Array indices must be positive integers or logical values.'

t = 0:5;
x = sqrt(2)*(1+1i)*exp(1i*(pi/4))*exp((-1+((1i)*2*pi)*t));
re = real(x);
imaginary = imag(x);
plot(re)
hold on
plot(imaginary)
채택된 답변
추가 답변 (2개)
John D'Errico
2023년 1월 19일
편집: John D'Errico
2023년 1월 19일
Do not define a variable with the names: sqrt, exp, real, imag, plot
If you do, then what do you think will happen when you then try to use the functions of the same name? Should MATLAB know what you want it to do? Sorry, but computers are very literal things. They try to do what you tell them to do. But when you tell them to do something confusing, what do you expect?
Do this at the command line:
which sqrt -all
which exp -all
which real -all
which imag -all
which plot -all
One of those will tell you that you have created a variable by that name. Delete the offending variable. My guess would be the problem lies in one of the names exp, real, or imag.
You could also have just looked at the list of variable names. So my guess is this would tell you something useful:
whos exp real imag
As if any of those variable names were used by you, they would now show up.
댓글 수: 3
collegestudent
2023년 1월 19일
Torsten
2023년 1월 19일
Do you know what exp(2*pi*1i*t) is for t=0:5 ? So the plot result shouldn't surprise you.
collegestudent
2023년 1월 19일
Sydney Lang
2023년 1월 19일
0 개 추천
You haven't defined t. If you do, the code works.
Additionally you haven't mentioned where this error occurs. I assume its coming from how you defined t?
카테고리
도움말 센터 및 File Exchange에서 Discrete Data Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


