Rank: 19 based on 5168 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
13 Nov 2009 mtit: a pedestrian major title creator MTIT creates a major title in a figure with many axes Author: us axis, subplot, graphics, customization, plot, figure 193 6
  • 4.42857
4.4 | 7 ratings
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 127 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 128 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 164 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 148 2
Comments and Ratings by us View all
Updated File Comments Rating
13 Nov 2009 mtit: a pedestrian major title creator MTIT creates a major title in a figure with many axes Author: us

this happens by design:
after MTIT terminates, the current (active) axis (GCA) is the handle of the invisible surrounding axis created by MTIT...
i've changed this behavior and an update should show up soon...
in the meantime, you can use this (tedious) approach
% create your figure/axes
     cah=gca; % <- save current axis handle
     mtit(gcf,'foo');
     axes(cah); % <- reset current axis handle

us

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

Comments and Ratings on us' Files View all
Updated File Comment by Comments Rating
20 Nov 2009 rex: a pedestrian regular expression operator synopsis generator rex prints a synopsis of the current regular expression operator syntax Author: us Danilo

13 Nov 2009 mtit: a pedestrian major title creator MTIT creates a major title in a figure with many axes Author: us us

this happens by design:
after MTIT terminates, the current (active) axis (GCA) is the handle of the invisible surrounding axis created by MTIT...
i've changed this behavior and an update should show up soon...
in the meantime, you can use this (tedious) approach
% create your figure/axes
     cah=gca; % <- save current axis handle
     mtit(gcf,'foo');
     axes(cah); % <- reset current axis handle

us

09 Nov 2009 mtit: a pedestrian major title creator MTIT creates a major title in a figure with many axes Author: us neve, sophie

I got a problem with it... makes the rotation of 3D surf impossible....

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

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
13 Nov 2009 mtit: a pedestrian major title creator MTIT creates a major title in a figure with many axes Author: us axis, subplot, graphics, customization, plot, figure 193 6
  • 4.42857
4.4 | 7 ratings
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 127 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 128 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 164 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 148 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