Rank: 1865 based on 52 downloads (last 30 days) and 1 file submitted
photo

Lennaert

E-mail

Personal Profile:

Professional Interests:

 

Watch this Author's files

 

Files Posted by Lennaert
Updated   File Tags Downloads
(last 30 days)
Comments Rating
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 rgb, rgb normalize, image overlay 52 3
  • 4.0
4.0 | 1 rating
Comments and Ratings by Lennaert
Updated File Comments Rating
10 Dec 2008 ReadLeCroyBinaryWaveform.m Reads LeCroy binary waveforms. Author: Alan

Excellent, worked straight away! Thanks a lot.

Comments and Ratings on Lennaert's Files View all
Updated File Comment by Comments Rating
22 Oct 2009 Quick routine to plot RGB overlay of three images plotRGB allows quick plotting of an overlay of three grayscale images Author: Lennaert Simon, Jan

On a multi-core machine MIN(MIN(X)) seems to be faster than MIN(X(:)). On a single core (Matlab 2009a), MIN(X(:)) is 16% faster with the example of <us>. Follow <us> to be prepared for the future. Thanks <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 us

...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

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 Simon, Jan

A short help text exists, but is not very descriptive. No H1-line. Year and author are mentioned. The automatic parsing of the help is impeded by using %% as comment chars. The source has no comments.
min(min(X)) would be a faster as min(X(:)), same for max. Pre-allocation of tempim is not needed.
Summary: It works, the function is useful, some improvements would be good.

Top Tags Applied by Lennaert
image overlay, rgb, rgb normalize
Files Tagged by Lennaert
Updated   File Tags Downloads
(last 30 days)
Comments Rating
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 rgb, rgb normalize, image overlay 52 3
  • 4.0
4.0 | 1 rating
 

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