When I run my code, I keep getting this error: Unable to convert expression into double array."
조회 수: 2 (최근 30일)
이전 댓글 표시
clear all
close all
syms z w
Gz=z/(z-1);
Gjw=subs(Gz,z,exp(j*w));
figure(1)
subplot(2,1,1)
stem(real(Gjw))
xlabel('frec (Hz)')
ylabel('MÓDULO')
stem(imag(Gjw)) %grafica la parte imag
subplot(2,1,2)
xlabel('frec (Hz)')
ylabel('ARGUMENTO')
sgtitle('G(jw)')
댓글 수: 0
답변 (1개)
Benjamin Thompson
2022년 2월 14일
You should use i for the imaginary number, instead of j. In your subs command you have not defined what w is.
>> Gjw
Gjw =
exp(w*1i)/(exp(w*1i) - 1)
>> Gjw=subs(Gz,z,exp(i*w));
>> Gjw=subs(w, 2);
>> stem(real(Gjw))
Now there should be no error
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!