How to correctly plot the error of a numerical algorithm ?

I would like to display the error made after the insertion of each approximation point in my numerical algorithm. Here is the plot that I get:
I don't want to display the error like that, since it is not clear how the value of it changes after the insertion of each point. I'd like to plot the error this way (picture taken from a paper):
In other words, I want the Y Axis to contain values from 10^(-1) to 10^(-6)
Here is the code that I use:
rms_res = norm(residual)/sqrt(lres);
errors = [errors rms_res];
% some code for other computation
% plot
plot(coord_ctrs, (errors), '.');
line(coord_ctrs, (errors));
How can I do that ?
Thank you.

 채택된 답변

the cyclist
the cyclist 2021년 9월 10일

0 개 추천

You can use the semilogy function instead of the plot function..

댓글 수: 2

thank you, it worked!
@Yassine El Baaj, please click the "Accept this answer" link to @the cyclist can get credit (reputation points) for it. Thanks in advance.

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

추가 답변 (0개)

질문:

2021년 9월 10일

댓글:

2021년 9월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by