Rank: 442 based on 255 downloads (last 30 days) and 4 files submitted
photo

Felix Zoergiebel

E-mail
Lat/Long
51.2999992370605, 9.5600004196167

Personal Profile:

Professional Interests:
Microrheology

 

Watch this Author's files

 

Files Posted by Felix View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
14 Feb 2009 Screenshot ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel errorbarloglog, errorbar horizontal, horizontal errorbar, error bar, plot data, errorbar logarithmic 97 12
  • 5.0
5.0 | 7 ratings
24 Nov 2008 Screenshot PLOTCOLS plots autoscaled columns of a matrix Author: Felix Zoergiebel autoscale, simple, column, plot, data exploration 25 0
27 May 2008 Screenshot ANY2CSV Exports any type of MATLAB data to a nicely formated csv-file Author: Felix Zoergiebel data import, potw, data export, export struct export ... 59 7
  • 4.33333
4.3 | 3 ratings
25 Feb 2008 struct2str recursive Displays a struct's content in a list box. View a substruct's content by selecting its list entry. Author: Felix Zoergiebel conversion, char strings, structures, struct display, substuct, struct 74 1
Comments and Ratings by Felix View all
Updated File Comments Rating
17 Feb 2009 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel

1. The function can handle more than one plot, however the syntax you proposed is not supported. If all data is of the same length, you can plot several graphs at one time with
ploterr([x1 x2 ... xn],[y1 y2 ... yn],....)
Each column will plot to one line. See the help for details. (doc ploterr)
If you want to plot several lines with different numbers of data points, plot them one after the other:
for i=1:n, ploterr(x{i},y{i},xerr{i},yerr{i}), hold all, end

2. The nomenclature works fine for me. erry makes "vertical" error bars, errx makes "horizontal" error bars.

Felix

15 Jan 2009 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel

I do not really understand what you want to do, but I guess it's either of the following:
If you want to have errorbars on each of the interpolated points, do

ploterr(x1,y1,0.02,0.5).

If you want the interpolated points plotted as a line and only the "raw data" as points with errorbars, you can do that with two consecutive plot commands:

ploterr(phi1,Iphi1,0.02,0.5,'o')
hold on, plot(x1,y1), hold off

Hope that helps,
Felix

15 Dec 2008 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel

The bugfix is online, I am looking forward to your comments!

13 Dec 2008 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel

I'm sorry about that. I forgot to test the last update for use with no options. Here's a fix you can use until the new version is online:

Add those to lines to the beginning of the getproperties function:

function [sym,lx,ly,hx,hy] = getproperties(A)
lx=0; ly=0; hx=2/3; hy=2/3; sym='-'; % presets
if isempty(A), return, end

23 Nov 2008 maxima and minima M-files for obtaining extreme points is a set of data Author: aasim Azooz

Sorry, I accidentally gave the three star rating. Well, since I rated it:
I tested the code, it works. However I'd recommend to rewrite the code with some find commands instead of the for loop. That's less code and executes faster.

Comments and Ratings on Felix's Files View all
Updated File Comment by Comments Rating
10 Nov 2009 ANY2CSV Exports any type of MATLAB data to a nicely formated csv-file Author: Felix Zoergiebel neve, sophie

very useful !!
but I find the opening of excel annoying
I also got a (little) problem when creating the file, it says :
The system cannot find the file ''pathname''
normal it does not found... has not been created yet....

so.

14 Aug 2009 struct2str recursive Displays a struct's content in a list box. View a substruct's content by selecting its list entry. Author: Felix Zoergiebel Näsholm, Peter

To be able to handle vectors in the form
[1
2
3
4]

(instead of [1 2 3 4]),
one may for example change from row 152 into:

tmp = getfield(s,{l},fnames{f});
sz = size(tmp);
if (ndims(tmp) == 2) && (sz(2) == 1)
isflipped = 1;
tmp = tmp';
tmp = ['[' num2str(tmp) ']' char(39)];
else
isflipped = 0;
tmp = ['[' num2str(tmp) ']'];
end

                    str = sprintf(fmt1,str,fnames{f}, tmp);
if isflipped
                     cell_str{k} = sprintf(fmt11,fnames{f}, [ '[' num2str(getfield(s,{l},fnames{f})') ']' char(39) ] );
else
                     cell_str{k} = sprintf(fmt11,fnames{f}, [ '[' num2str(getfield(s,{l},fnames{f})) ']' ] );
end
                    k = k + 1;

(and then as the rest of the original code)

04 Jul 2009 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel Ken

Thank you, Felix, for this excellent function! Erik Benkler (who posted above) is right: ploterr really is the Swiss Army Knife of error bar plots.

29 Apr 2009 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel Avdeeva, Anna

29 Apr 2009 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel Avdeeva, Anna

I have read your comment, that function can handle more than one plot, using
ploterr([x1 x2 ... xn],[y1 y2 ... yn],....) .
However I am having difficulties with plotting two curves using two user set styles ('^r','logxy' and 'ob','logxy').
Could you please let me know how to solve this?

Thank you in advance,
Anna

Top Tags Applied by Felix
data exploration, plot, autoscale, cell arrays, char strings
Files Tagged by Felix View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
14 Feb 2009 Screenshot ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel errorbarloglog, errorbar horizontal, horizontal errorbar, error bar, plot data, errorbar logarithmic 97 12
  • 5.0
5.0 | 7 ratings
24 Nov 2008 Screenshot PLOTCOLS plots autoscaled columns of a matrix Author: Felix Zoergiebel autoscale, simple, column, plot, data exploration 25 0
27 May 2008 Screenshot ANY2CSV Exports any type of MATLAB data to a nicely formated csv-file Author: Felix Zoergiebel data import, potw, data export, export struct export ... 59 7
  • 4.33333
4.3 | 3 ratings
25 Feb 2008 struct2str recursive Displays a struct's content in a list box. View a substruct's content by selecting its list entry. Author: Felix Zoergiebel conversion, char strings, structures, struct display, substuct, struct 74 1
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com