Rank: 217 based on 265 downloads (last 30 days) and 4 files submitted
photo

Georg Stillfried

E-mail
Company/University
DLR - german aerospace center
Lat/Long
48.084347, 11.275831

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Files Posted by Georg View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
22 Oct 2009 Screenshot 3D colored line plot Plot 3D lines with CData, (actually surface) Author: Georg Stillfried 3d, plot3, graphics, lines, object, plot 16 2
  • 4.5
4.5 | 2 ratings
20 Oct 2009 Screenshot Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried icon, gui, button, logo 221 8
  • 4.66667
4.7 | 6 ratings
21 Sep 2009 Screenshot mArrow3.m - easy-to-use 3D arrow Draw a 3D arrow. Easily specify size, color and even transparency. Author: Georg Stillfried arrow, arrow3, 3d, arrowhead, graphics, annotation 25 0
  • 5.0
5.0 | 1 rating
26 May 2009 Screenshot index.m - create a list of the indices and values of an array Create a list where each value (content) of an array is displayed together with its index. Author: Georg Stillfried matrices, index, indexes, indices, array, matrix 3 2
Comments and Ratings by Georg View all
Updated File Comments Rating
13 Dec 2011 Absolute Orientation Computes the transformation to register two corresponding 3D point sets. Author: Christian Wengert

Just what I was looking for

23 Dec 2009 Despiking This function remove spike noise from data. Author: Nobuhito Mori

P.S. I just noticed that this works only if x is a vector. If x is an array, the "official" nanmean will calculate the mean columnwise or along a specified dimension. What they do there is to set the NaNs to zero, sum up the columns and divide by the number of no-NaNs:

function m = nanmean (x,dim)
if nargin<2, dim=1; end
nans = isnan(x);
x(nans) = 0;
sumx = sum(x,dim);
m = sumx./sum(~nans);

Save the file as nanmin.m in a directory on the Matlab path.

hope this helps,
GS

23 Dec 2009 Despiking This function remove spike noise from data. Author: Nobuhito Mori

Jac Billington

write your own nanmean function, e.g.:

function m = nanmean (x)
x = x(~isnan(x))
m = mean(x)

22 Dec 2009 TCP/UDP/IP Toolbox 2.0.6 TCP/IP connections or UDP packets in MATLAB Author: Peter Rydesäter

Kostas Grunder

That did the trick. Thank you very much!

25 Nov 2009 TCP/UDP/IP Toolbox 2.0.6 TCP/IP connections or UDP packets in MATLAB Author: Peter Rydesäter

I did not manage to compile the c-file pnet.c. I am running Matlab 2009a on a Linux machine with a 2.6.27 kernel and a 4.3.2. gcc compiler. Can anyone help me?

P.S. I recieve the following error messages:

>> mex -O pnet.c

Warning: You are using gcc version "4.3.2". The earliest gcc version supported
         with mex is "4.1". The latest version tested for use with mex is "4.2".
         To download a different version of gcc, visit http://gcc.gnu.org

pnet.c:104: error: expected identifier or ‘(’ before ‘/’ token
pnet.c:170: error: expected identifier or ‘(’ before ‘/’ token
pnet.c: In function ‘newbuffsize’:

[... many more error messages...]

pnet.c:1158: error: expected expression before ‘/’ token
pnet.c:1174: error: expected expression before ‘/’ token

    mex: compile of ' "pnet.c"' failed.

Comments and Ratings on Georg's Files View all
Updated File Comment by Comments Rating
12 Nov 2011 mArrow3.m - easy-to-use 3D arrow Draw a 3D arrow. Easily specify size, color and even transparency. Author: Georg Stillfried michael
03 Aug 2011 Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried Monda, Mr. Zipote

Excelent, thank you

21 Jul 2011 3D colored line plot Plot 3D lines with CData, (actually surface) Author: Georg Stillfried Nieslony, Adam
15 Oct 2010 Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried Wouter

Thank you very much. This one is way better than the shipped ones.

08 Apr 2010 3D colored line plot Plot 3D lines with CData, (actually surface) Author: Georg Stillfried Edwards, James

works perfectly, thanks!

Top Tags Applied by Georg
3d, cdata, graphics, annotation, array
Files Tagged by Georg View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
29 Nov 2010 Screenshot Scalable Vector Graphics (SVG) Export of Figures Converts 3D and 2D MATLAB plots to the scalable vector format (SVG). Author: Juerg Schwizer plot2svg, svg filters, graphics, converter, specialized, figure 327 84
  • 4.47887
4.5 | 75 ratings
22 Oct 2009 Screenshot 3D colored line plot Plot 3D lines with CData, (actually surface) Author: Georg Stillfried 3d, plot3, graphics, lines, object, plot 16 2
  • 4.5
4.5 | 2 ratings
20 Oct 2009 Screenshot Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried icon, gui, button, logo 221 8
  • 4.66667
4.7 | 6 ratings
21 Sep 2009 Screenshot mArrow3.m - easy-to-use 3D arrow Draw a 3D arrow. Easily specify size, color and even transparency. Author: Georg Stillfried arrow, arrow3, 3d, arrowhead, graphics, annotation 25 0
  • 5.0
5.0 | 1 rating
26 May 2009 Screenshot index.m - create a list of the indices and values of an array Create a list where each value (content) of an array is displayed together with its index. Author: Georg Stillfried matrices, index, indexes, indices, array, matrix 3 2

Contact us at files@mathworks.com