Continuous Error bars
58 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ocram
am 27 Mai 2012
Kommentiert: Veena Chatti
am 1 Sep. 2020
Hi all, i want to plot the mean of a track with the standard deviation. I tried this, by using the function errorbar, This is acceptable, but I was looking for something different, such as a continuous band. Something like this one:
![](https://www.mathworks.com/matlabcentral/images/broken_image.png)
Thanks, M
0 Kommentare
Akzeptierte Antwort
Tom Lane
am 27 Mai 2012
You may be able to modify this to suit your needs:
x = linspace(0,1,20)';
y = sin(x);
dy = .1*(1+rand(size(y))).*y; % made-up error values
fill([x;flipud(x)],[y-dy;flipud(y+dy)],[.9 .9 .9],'linestyle','none');
line(x,y)
4 Kommentare
Veena Chatti
am 1 Sep. 2020
WOW. Thanks. No file downloads, no mess, no fuss, no fretting about learning another programming language or environment, or exporting a bunch of data elsewhere...Just five simple lines of code and the relief of saving a whole lot of tedium to make something seemingly simple work!
Weitere Antworten (1)
Oleg Komarov
am 27 Mai 2012
You can choose one of the following in the FEX:
- http://www.mathworks.com/matlabcentral/fileexchange/27485
- http://www.mathworks.com/matlabcentral/fileexchange/26311-shadederrorbar
- http://www.mathworks.com/matlabcentral/fileexchange/2683-confplot
- http://www.mathworks.com/matlabcentral/fileexchange/10843-errorfill
User defined functions have to be placed into a folder and that folder should be added to the MATLAB path. See addpath(), savepath() or on the menu bar File > Set path
0 Kommentare
Siehe auch
Kategorien
Mehr zu Errorbars finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!