Rank: 244 based on 279 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, specialized, surface, plotting, plot, color line 27 2
  • 4.0
4.0 | 1 rating
20 Oct 2009 Screenshot Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried button, gui, icon, logo 209 6
  • 4.6
4.6 | 5 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 graphics, arrow, arrowhead, 3d, patch, transparent 34 0
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 matrix, index, indexes, matrices, array, sorted 9 2
Comments and Ratings by Georg View all
Updated File Comments Rating
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.

21 Oct 2009 Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried

Edges are now transparent.

Comments and Ratings on Georg's Files View all
Updated File Comment by Comments Rating
08 Apr 2010 3D colored line plot Plot 3D lines with CData, (actually surface) Author: Georg Stillfried Edwards, James

works perfectly, thanks!

30 Mar 2010 Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried Jan

Excelent, i can't believe matlab is still shipped with the ancient icons, found in the X11 folder.

29 Jan 2010 3D colored line plot Plot 3D lines with CData, (actually surface) Author: Georg Stillfried verhelst, Ward

great stuff,..thanks a lot

07 Dec 2009 Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried Clark, Thomas

About time someone did it. Last install, I had to make one myself... now you've saved me the trouble :)

Thanks!

27 Nov 2009 Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried Mineault, Patrick

Beautiful

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
06 Mar 2010 Screenshot Scalable Vector Graphics (SVG) Export of Figures Converts 3D and 2D MATLAB plots to the scalable vector format (SVG). Author: Juerg Schwizer svg filters, data export, animation, shadow, svg, plotting 241 62
  • 4.47458
4.5 | 62 ratings
22 Oct 2009 Screenshot 3D colored line plot Plot 3D lines with CData, (actually surface) Author: Georg Stillfried 3d, specialized, surface, plotting, plot, color line 27 2
  • 4.0
4.0 | 1 rating
20 Oct 2009 Screenshot Matlab Icon for Linux (with Transparency) A nice icon to use as Matlab start button in Linux. Author: Georg Stillfried button, gui, icon, logo 209 6
  • 4.6
4.6 | 5 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 graphics, arrow, arrowhead, 3d, patch, transparent 34 0
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 matrix, index, indexes, matrices, array, sorted 9 2

Contact us at files@mathworks.com