Rank: 392 based on 185 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 errorbar logarithmic, error bar, data exploration, errorbar, horizontal errorbar, logarithmic errobar 93 19
  • 5.0
5.0 | 12 ratings
24 Nov 2008 Screenshot PLOTCOLS plots autoscaled columns of a matrix Author: Felix Zoergiebel data exploration, plot, column, autoscale, simple 0 0
27 May 2008 Screenshot ANY2CSV Exports any type of MATLAB data to a nicely formated csv-file Author: Felix Zoergiebel data export, export struct export ..., data import, potw, pick of the week 87 10
  • 4.5
4.5 | 4 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 structures, cell arrays, struct, substuct, char strings, conversion 5 1
Comments and Ratings by Felix View all
Updated File Comments Rating
07 Oct 2011 export_fig Exports figures nicely to a number of vector & bitmap formats. Author: Oliver Woodford

I have problems with calling ghostscript (and also pdf2ps) from MATLAB R2011b on OS X 10.6.8. system('/opt/local/bin/gs') gives me this error:

dyld: Library not loaded: /opt/local/lib/libfreetype.6.dylib
  Referenced from: /opt/local/lib/libfontconfig.1.dylib
  Reason: Incompatible library version: libfontconfig.1.dylib requires version 14.0.0 or later, but libfreetype.6.dylib provides version 10.0.0
/opt/local/bin/gs: Trace/breakpoint trap

I fixed the problem by deleting MATLABs DYLD_PATH_LIBRARY variable before calling ghostscript in ghostscript.m:

[varargout{1:nargout}] = system(sprintf('export DYLD_LIBRARY_PATH=""; /opt/local/bin/gs %s', cmd));

Same should work for pdf2ps.m.

This problem does not exist on MATLAB 7.4, since there is no libfreetype.6.dylib in the MATLAB installation. Hope that this little report helps somebody else.

24 Feb 2010 Scalable Vector Graphics (SVG) Export of Figures Converts 3D and 2D MATLAB plots to the scalable vector format (SVG). Author: Juerg Schwizer

Yet another bug when plotting the y-axis on the right side of the plot-box: label positions are inverted, i.e. labels are not [1 2 3 4 5] but [5 4 3 2 1] (data is still plotted as in figure)

24 Feb 2010 Scalable Vector Graphics (SVG) Export of Figures Converts 3D and 2D MATLAB plots to the scalable vector format (SVG). Author: Juerg Schwizer

Great job! This really helps me plotting translucent patches, which is just not possible with matlab functions. However, there are small problems.
1: latex \cdot is not processed. I added
tex=strrep(tex,'\cdot','& # 8901;'); (without spaces...)
to line 2351 of plot2svg_beta.m
2: I have an hggroup with text objects that are placed outside of the axis (custom labels). These labels are not plotted before I set the parent of each of them to the axis.

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

Comments and Ratings on Felix's Files View all
Updated File Comment by Comments Rating
02 May 2011 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel Hickey, James

Is there a way to change the width/length of the 'T' marks at the end of the errorbars?

04 Apr 2011 ANY2CSV Exports any type of MATLAB data to a nicely formated csv-file Author: Felix Zoergiebel Gupta, Kshitij

very useful

19 Jan 2011 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel Han, Jiaxin
31 Dec 2010 ploterr plots data with x and/or y error bars and supports logarithmic scaling for both axes. Author: Felix Zoergiebel Eddie

Hi Felix,
Here's a small mistake catching mechanism that can be added:
I'm using ploterr with the toggle for 'logxy' on, and I didn't realize that there were some points that would be negative with error bars, and I tried plotting them, and ploterr "did" without returning any error. I thought the plot looked a little sparse, and I couldn't figure it out until I finally noticed these tiny pixels on my graph. I'm not quite sure what they are because I haven't looked into ploterr, but it seems that feeding points where data-error<=0 (I tried 0 as well), makes ploterr plot these tiny pixels on your graph instead of the real points you wanted. They're very hard to see, and I missed them the first dozen time I look at my graph; so, it may be handy to provide some kind of error message when that happens.

01 Dec 2010 ANY2CSV Exports any type of MATLAB data to a nicely formated csv-file Author: Felix Zoergiebel Schaedel, Oren

Thanks, very useful

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 errorbar logarithmic, error bar, data exploration, errorbar, horizontal errorbar, logarithmic errobar 93 19
  • 5.0
5.0 | 12 ratings
24 Nov 2008 Screenshot PLOTCOLS plots autoscaled columns of a matrix Author: Felix Zoergiebel data exploration, plot, column, autoscale, simple 0 0
27 May 2008 Screenshot ANY2CSV Exports any type of MATLAB data to a nicely formated csv-file Author: Felix Zoergiebel data export, export struct export ..., data import, potw, pick of the week 87 10
  • 4.5
4.5 | 4 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 structures, cell arrays, struct, substuct, char strings, conversion 5 1

Contact us at files@mathworks.com