Rank: 14 based on 7916 downloads (last 30 days) and 41 files submitted
Personal Profile:

1956 born...
1986 ...matlab...
2009

Professional Interests:
neurology, neuroscience, mathematics, statistics

 

Watch this Author's files

 

Files Posted by us View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
14 Aug 2009 Screenshot isodd: a pedestrian parity checker ISODD returns TRUE for integers of any numeric MATLAB class that are not evenly divisible by 2 Author: us rem, parity, mod, odd, even, bitmax 184 2
  • 5.0
5.0 | 1 rating
28 Jul 2009 Screenshot sarr: a pedestrian array splitter SARR splits a 2D array into 3D adjacent subarrays Author: us permute, array, reshape, subarray, tiling 210 0
18 Jun 2009 Published M-Files fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us nested, function, anonymous, lexical, class, calls 235 18
  • 5.0
5.0 | 7 ratings
18 Jun 2009 Published M-Files farg: a pedestrian M-file parser showing all used functions' syntax parses an M-file searching for functions and prints their exact, literal syntax Author: us development environme..., anonymous, lexical, script, function, argument list 224 2
11 Jun 2009 Published M-Files cprintf: a pedestrian ND array formatting and display utility cprintf converts an ND array or ND cell array to a 2D character array and - optionally - a table Author: us fprintf, class, sprintf, printmat, cell, array 226 4
  • 5.0
5.0 | 6 ratings
Comments and Ratings by us View all
Updated File Comments Rating
07 Nov 2009 MATLAB Contest - Flooding All the files needed to develop and score an entry for the MATLABĀ® Programming Contest. Author: The MATLAB Contest Team

just a very marginal note:
this version of GETCOMPLEXITY's number-extraction-engine(!) is about 25% faster and does not use EVAL...

function mc=getComplexity(filename)
mc=mlint('-cyc','-string',filename);
mc=regexp(mc,'The McCabe complexity of \S+ is (\d+)','tokens');
mc=[mc{:}];
mc=max(strread(sprintf('%s\n',mc{:})));
end

us

24 Oct 2009 finding_ensemble_parameters_of_random_signal_in_a_communication_channel Find ensemble parameters of random signal in a communication channel. Author: Dimuthu Senanayaka

in addition to <jan>'s already thorough review:
RUN is a ML stock function, which should not be duplicated...

us

21 Oct 2009 Quick routine to plot RGB overlay of three images plotRGB allows quick plotting of an overlay of three grayscale images Author: Lennaert

...min(min(X)) would be a faster as min(X(:))...

not quite

% ic2/2*2.6ghz/2gb/winxp.sp3/r2009b
x=rand(1000);
tic;for i=1:1000;min(x(:));end;toc
% Elapsed time is 1.469955 seconds.
tic;for i=1:1000;min(min(x));end;toc
% Elapsed time is 1.491293 seconds.

for smaller xes, its even faster...
just a thought
us

31 Aug 2009 unique_no_sort_rows find unique rows of a matrix without resorting the rows Author: Michael Petralia

does not work on matrices M x N with N > 2,
since your statement
     B = unsorted(:,2:3);
should read
     B = unsorted(:,2:end);

us

29 Aug 2009 BlobsDemo Image Processing Tutorial to demonstrate the basic concepts to beginner users. Author: Image Analyst

an excellent and exceptionally well commented image processing demo by a seasoned ML user and senior CSSM citizen...

a few changes i'd make:
- put it into a function
  -> no need for the bad CLEAR ALL...
- make the figure size smaller -and-
- put an ECHO ON/OFF at the beginning/end of the demo
  -> for users to be able to enjoy the comments during run-time...

just a few thoughts
us

Comments and Ratings on us' Files View all
Updated File Comment by Comments Rating
05 Nov 2009 fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us Jonas

Excellent function!

In Windows, the file separators in output.froot point the wrong way, though. Is that on purpose?

28 Oct 2009 rtc: a pedestrian real-time clock figure creates a versatilely configurable real-time clock in a figure Author: us Senanayaka, Dimuthu

nice...sir

30 Sep 2009 grep: a pedestrian, very fast grep utility a unix-like, very fast grep utility to find strings(s) in files of any type Author: us shalom, almog

20 Aug 2009 isodd: a pedestrian parity checker ISODD returns TRUE for integers of any numeric MATLAB class that are not evenly divisible by 2 Author: us P, M

Maybe you are the Herbert West re-animator of Brian Yuzna masterpieces. I hope is so! :))

13 Aug 2009 rcssm: a pedestrian newsgroup stats reader rcssm extracts the posting activity of MATLAB's newsgroup since 1993 Author: us Giaccari, Luigi

A swiss clock!!! :-)

Top Tags Applied by us
string, matrices, path, array, function
Files Tagged by us View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
14 Aug 2009 Screenshot isodd: a pedestrian parity checker ISODD returns TRUE for integers of any numeric MATLAB class that are not evenly divisible by 2 Author: us rem, parity, mod, odd, even, bitmax 184 2
  • 5.0
5.0 | 1 rating
28 Jul 2009 Screenshot sarr: a pedestrian array splitter SARR splits a 2D array into 3D adjacent subarrays Author: us permute, array, reshape, subarray, tiling 210 0
18 Jun 2009 Published M-Files fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us nested, function, anonymous, lexical, class, calls 235 18
  • 5.0
5.0 | 7 ratings
18 Jun 2009 Published M-Files farg: a pedestrian M-file parser showing all used functions' syntax parses an M-file searching for functions and prints their exact, literal syntax Author: us development environme..., anonymous, lexical, script, function, argument list 224 2
11 Jun 2009 Published M-Files cprintf: a pedestrian ND array formatting and display utility cprintf converts an ND array or ND cell array to a 2D character array and - optionally - a table Author: us fprintf, class, sprintf, printmat, cell, array 226 4
  • 5.0
5.0 | 6 ratings
 

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