why won't the command semilogy work?

Whenever I try to create a figure using the command semilogy, the figure opens up but it's a blank page and it doesn't give me the graph.

댓글 수: 3

It works fine for us. Show an example where it fails for you, as we will not be able to reproduce whatever error you have made.
semilogy(1:10,rand(10))
figure(4)
semilogy (1:iter3N, abs(scarti3N), 'r-');
Unrecognized function or variable 'iter3N'.
hold on
semilogy (1:itertf3, abs(scartitf3), 'b-');
hold on
semilogy(1:iter3,abs(scarti3), 'm-');
title('convergence');
xlabel('iter');
ylabel('error');
legend('Newton-rhapson','tangente fissa','punto fisso');
hold off
John D'Errico
John D'Errico 2024년 4월 12일
편집: John D'Errico 2024년 4월 12일
So your example where semilogy does not work, is the case of an undefined variable? You cannot plot something if it does not exist.
Unrecognized function or variable 'iter3N'.
Unless, of course, you have a beta copy of the mind reading toolbox. It was never officially released, as it is really buggy.
Seriously, READ THE ERROR MESSAGE. While you may think the variable iter3N exists somewhere, it is not in the workspace accessible to that call.

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

답변 (0개)

카테고리

도움말 센터File Exchange에서 Time Series Objects에 대해 자세히 알아보기

태그

질문:

2024년 4월 12일

편집:

2024년 4월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by