Is there a built-in function for errorbarxy?

조회 수: 2 (최근 30일)
LeChat
LeChat 2020년 8월 16일
댓글: LeChat 2020년 8월 19일
Hi,
Like many other I need to plot errorbar plot on both the x and y dimensions.
I found the errorbarxy as well as the ploterr functions on the Mathworks file exchange, but these solutions although nice, are kinda of DIY, and do not provide a full customization like the classical plot, scatter, or errobar Matlab built-in functions (such as the handling of the figure objects in order to edit the colors, linewidth, etc. in a script).
Is there any built-in (or at least better) solutions available?
If not, would it be possible to add this on the shoping list for the next Matlab update? :)
Thanks a lot!

채택된 답변

Harshendra Shah
Harshendra Shah 2020년 8월 19일
Hi,
I understand that you want to plot both vertical and horizontal error bars. This functionality is already there in the 'errorbar' function.
You can do something like this:
x = 1:10:100;
y = [20 30 45 40 60 65 80 75 95 90];
err = [4 3 5 3 5 3 6 4 3 3];
errorbar(x,y,err,'both')
There are ways to customize this behaviour as well. Going through the documentation might help.
Regards,
Harshendra
  댓글 수: 1
LeChat
LeChat 2020년 8월 19일
This is very neat, don't know how I missed that. Thank you so much!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Errorbars에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by