Error Bars
조회 수: 2 (최근 30일)
이전 댓글 표시
hi,
I have some errors on x and y axes and I am able to plot error on the y axis by using errorbar. I am not able to plot error on x axis together on the same graph. Here is the code.
close all;
clear all;
clc;
r0 = 2.2;
vout = [0.391710782 0.349193537 0.299451595 0.268145156];
x_conc = [605.5 697 807 949];
rs = (3.6./vout-2)/r0;
error_vout = [0.014846491 0.009265438 0.020145148 0.018445414];
error_conc = [16.5 2 6 6]; % error in concentration
error_rs = 3.6*error_vout./vout.^2;
figure;
errorbar(x_conc,rs,error_rs,'.b','marker','h','markersize',12,'markeredgecolor','b','markerfacecolor','r');
xlim([0.9*min(x_conc) 1.1*max(x_conc)]);
x_conc is my x axis and rs is y. error_rs is the error on y axis which I plotted. In the graph it is shown vertically since rs is on y axis. Now how can I plot error_conc? I don't know to plot this error horizontally since x_conc is on x axis.
I will be thankful if someone helps.
Best,
댓글 수: 0
채택된 답변
Daniel Shub
2011년 6월 27일
There are a number of functions on the FEX that should allow you to do this. I haven't used any of them, but
looks promising.
If that doesn't work for you maybe this one will:
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!