필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Need help understanding error PLEASE

조회 수: 1 (최근 30일)
Triggs
Triggs 2020년 4월 27일
마감: MATLAB Answer Bot 2021년 8월 20일
k

답변 (1개)

Srivardhan Gadila
Srivardhan Gadila 2020년 4월 30일
Below is the code from lines 142-147
Fmax=max(abs(F))+1;
subplot(2,1,1)
plot(x,U, '-ob '); axis([0 x(n) -UMax UMax]); drawnow;
xlabel(' x nodes '), ylabel(' Temperature ')
subplot(2,1,2)
plot(xc,F, '--V'); axis([0 x(n) -Fmax Fmax]); drawnow;
When running the code, in the 5th iteration the value of Fmax is NaN and Fmax is used in line 144 in the axis limits which is causing the error.
Try checking the value of Fmax in each iteration by removing the semicolon in line 142 i.e.,
Fmax=max(abs(F))+1

이 질문은 마감되었습니다.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by