Rank: 295 based on 285 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 45 1
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 186 5
  • 4.5
4.5 | 4 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 42 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 12 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
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 Patrick

Beautiful

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

Edges are now transparent.

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

The edges still don't appear to be transparent. If you have export_fig (here on the FEX) then the following gives a good result:
logo; set(gcf, 'color', 'none', 'position', [101 100 127 128]); export_fig matlabicon.png -nocrop

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 271 56
  • 4.40385
4.4 | 55 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 45 1
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 186 5
  • 4.5
4.5 | 4 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 42 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 12 2
 

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