Plot graph with error bars on both axes.
% simple example:
Data = [1 10 1; 2 9 0.5; 3 8 0.7];
errorxy(Data)
Eran Ofek (2021). plot errorbars on both axes (https://www.mathworks.com/matlabcentral/fileexchange/9693-plot-errorbars-on-both-axes), MATLAB Central File Exchange. Retrieved .
Inspired: superbar
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
Very very useful code.
@ Jonathan - How to make the error bars invisible behind the makers? It would be great if you can help me with this.
Thanks
Very useful.
Very useful
Handy addition to the standard plot command
I use errorxy, but I've modified it so that the data point markers plot over the error bars and so that I can change the thickness of the data point markers. The code is structured well so that it is easy to modify.
Seems useful. I have only a couple of minor points. The use of property/value pairs is very valuable for tools like this where you have many different parameters, most of which have default values. BUT - do not make those properties case sensitive as has been done here. The user does not want to remember that to specify which column the y errors comes from, they must use the property 'ColYe'. Instead, allow them to specify 'colye' instead. Your code should ignore case. The function "lower" can help you here. Next, its also nice to allow the user to shorten a property, as long as that shortening is unambiguous. Thus, properties 'hist', 'histfacecolor' and 'histedgecolor' should be able to be shortened to as small as 'hist', 'histf', or 'histe'. Strmatch or strncmpi can help with this.
A great m files that should be on standard Matlab distribution. Well documented and working all right.