Search Comments and Ratings

go

Comments and Ratings

   
Date File Comment by Comment Rating
11 Mar 2010 EzyFit 2.30 A free curve fitting toolbox for Matlab Author: Frederic Moisy pandey, anurag

it's a fabulous tool bar, which solved my problem i was struggling to get done for quite some time. I have a query about it, that what you do if you want to fit just a part of your data(curve).

11 Mar 2010 RADAR simulation an early warning RADAR simulation Author: Yonathan Nativ Deshpande, Ashwini

10 Mar 2010 Character Recognition Example (V):Training a Simple NN for classification Recognize the arabic and english number system Author: Jalal Alowibdi mulani, altaf

I would like to work on Arabic character recognition. I m a beginner, so from where i can start

10 Mar 2010 Neuron counting Count the number of fluorescent cells (tagged with GFP) on noisy background fluorescence Author: TIAN ZHOU ZHOU, TIAN

hi, Rob
sorry for rating my own code. it is really not my purpose. i thought you have to click 'submit' for the rating to come out. and i haven't found a way to delete it.
you are right about the data type. it is really something i should consider.
the property of the slide bar can be changed in the GUI. select the slide bar, right click and select property inspector, and change the min and max value to expend the range. you might get an error when the threshold value is negative or more than one. i am not sure if it will help.
i'll also comment out the top hat part. i have a newer version GUI but don't want to upload it since it is really a minor change.

have you considered resizing your image before processing? enlarge them so each cell will have more pixel?
 

10 Mar 2010 Bipolar Colormap Symmetric/diverging/bipolar cold-neutral-hot colormap Author: Ged Ridgway Klymak, Jody

I'd also take a look at:

http://www.mathworks.com/matlabcentral/fileexchange/17555-light-bartlein-color-maps

10 Mar 2010 saveppt This function saves Matlab figure windows or Simulink models to a Powerpoint file. Author: Mark Brown Mark

Here is a quick example of how I use pushbutton 1 to generate the plot and using the saveppt in pushbutton 2.

% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
figure
x = -pi:pi/10:pi;
y = tan(sin(x)) - sin(tan(x));
plot(x,y,'--rs','LineWidth',2,...
                'MarkerEdgeColor','k',...
                'MarkerFaceColor','g',...
                'MarkerSize',10)

% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Establish valid file name:
saveppt

I just can't see how the code below would capture the current figure. Need some help to allow me to embed this into my GUI.

% Capture current figure/model into clipboard:
if nargin<3
  print -dmeta
else
  print('-dmeta',prnopt)
end

10 Mar 2010 Get computer name/hostname It provides the computer name where running. Useful for customizing scripts depending on the machine Author: Manuel Marin MathMoose

Thanks. I had to strip a newline character from the end of the name string returned (on Windows 7), but this function was useful.

I added to the end of the file:

% remove trailing newline or null characters
name = deblank(name);

10 Mar 2010 MESH2D - Automatic Mesh Generation Generates unstructured triangular meshes for general 2D geometry. Author: Darren Engwirda Moucha, Robert

Many thanks,

Any plans to bypass MATLAB's tsearch?
In the 2010a release "Warning: TSEARCH will be removed in a future release. Use DelaunayTri/pointLocation instead."

10 Mar 2010 samplepick pick a random sample out of an array Author: Mauro Mauro

jep, and it's faster ;-) ...

10 Mar 2010 Neuron counting Count the number of fluorescent cells (tagged with GFP) on noisy background fluorescence Author: TIAN ZHOU Campbell, Rob

Thanks, I had looked at that link in the past. My problem is rather difficult because the cell bodies as small so I have few pixels to work with. Although they are touching, the pears are fairly easy to isolate because each pear is composed of a large number of pixels.

Your new GUI isn't working for me. It doesn't check whether the input is of the right type. e.g. my image was an int8 and under those circumstances the threshold slider doesn't work. I edited the code to convert the image to a double after loading but then something else broke.

You will find other users of this site consider it bad form for an author to rate their own submissions.

10 Mar 2010 Character Recognition Example (V):Training a Simple NN for classification Recognize the arabic and english number system Author: Jalal Alowibdi Connors, conrad

Hi, I make on handwritten recognition project in my University, but I totally beginner...I use moments plus NN ...I need you help please... My email is pstahl@centrum.cz Thx

10 Mar 2010 Java-based data table Spreadsheet display/editing/sorting of data with multiple features Author: Yair Altman Eskerud Smith, Ivar

10 Mar 2010 MS_Regress - A Package for Markov Regime Switching Models in Matlab Functions to Estimate, Simulate and Forecast Markov Regime Switching Models in Matlab Author: Marcelo Perlin Perlin, Marcelo

Hi Jorge,

Sorry but no, I don't have the code for regime switching time varying parameter model.

Regards.

10 Mar 2010 Ideal Low Pass Filter Ideal Low Pass Filter using DFT Author: Madhu S. Nair speed, velocity

Hello,
I'm reinhart..
I still don't know what the meaning of parameter P?
can I request an explanation?
Thank you,

10 Mar 2010 Simulink Modelling of a 3 phase Induction Motor Using its test results The model uses Test results to simulate its performance Author: jayanta basu lingala, bheem

 please send documentation my email id reach2satelliteyahoocom

10 Mar 2010 Tutorial on solving BVPs with BVP4C Solving boundary value problems with BVP4C. Tutorial + Examples. Author: Jacek Kierzenka Hocaoglu, Elif

helpful, thx

10 Mar 2010 Centroid Calculation Function Calculates centroid of an object present in an image. Author: Fahd Ahmad Abbasi Kylling, Anton

Calculates the centroid of the entire image.

10 Mar 2010 samplepick pick a random sample out of an array Author: Mauro Rowland, Darren

The function randperm is practically ready-made for this application. To draw a subset, s, of size m from a dataset, d, of size n, one can simply do

perm = randperm(n);
s = d(perm(1:m));

10 Mar 2010 mmread Read virtually any media file in Windows, Linux, or Mac. Author: Micah Richert Ravi

This is very useful piece of code. I am using it to extract the audio component from AVI files, the problem I am facing is that the extracted audio has a high degree of distortion, unlike the video which is much clearer. At this point, I need to have much better quality audio. Thanks once again for this utility, and please help if you can. Bests, Ravi

10 Mar 2010 PSO Solution to Economic Dispatch with Discontinuous Fuel cost equations This software solves the problem of Economic Dispatch with discontinous fuel cost equations by PSO Author: Saloman Danaraj nagarjun, naradasi

09 Mar 2010 MS_Regress - A Package for Markov Regime Switching Models in Matlab Functions to Estimate, Simulate and Forecast Markov Regime Switching Models in Matlab Author: Marcelo Perlin Jorge

Excelent! I would like to combine TVP Models with Regime Switching as Kim y Nelson, have you any model like this?

09 Mar 2010 RMAOV33 Three-way Analysis of Variance With Repeated Measures on Three Factors Test. Author: Antonio Trujillo-Ortiz Fermin, Alan

the code is excellent, easy to understand and to perform a test.
it accounts for within subject variance, but results are not much different from anovan. how to perform a post-hoc analysis, as the multicomparion in anovan?

09 Mar 2010 Matlab script to read and plot NCEP/NCAR 4x Daily Reanalysis data Matlab script to read and plot NCEP/NCAR 4x Daily Reanalysis data Author: Paula Moreira Stevens, Andrew

Why not use OPeNDAP which has a tool to read NCEP Re-Analysis data (as well as many other datasets) directly into matlab?

http://opendap.org/download/ml-structs.html

09 Mar 2010 Listless SPECK (LSk) Listless Speck Codec Author: Ravi Lakkundi Ursila

Lena.mat appears to be corrupt. Please guide me how i can download the correct file. Thanks

09 Mar 2010 Max or Min position in a matrix Used to obtain the particular position where a maximum or minimum occurs in a matrix. Author: Damilola Ogunbiyi D'Errico, John

This has SOME good features. What do I like about it? It does have help, to some extent. But the help could be a bit better. Here is what you get when you use help on this function:

>> help findit
  To obtain the position of either the maximum or minimum element in a vector
 
  INMAT specifies the input matrix
  Use OPT specify your choice of obtaining a maximum or minimum
  Set OPT=1 when trying to obtain the maximum
  Set OPT=2 when trying to obtain the minimum
 
 
  Oluwadamilola (Damie) Martins Ogunbiyi
  University of Maryland College Park
  Department of Electrical and Computer Engineering
  Communications and Signal Processing
  08-March-2010
  Copyright 2009-2010 Black Ace of Diamonds.

See that there is an H1 line in the help block. I like that. There is a simple description of the arguments. But what order do they go in? I might guess that INMAT is the first argument, because it is mentioned first. But there is no other hint.

Next, does this require that OPT be supplied? Is OPT and optional argument? If so, then it should have a default, and the help should tell us what is the default. As it turns out, there is no default value for opt.

I do like that there is a check for opt being a valid argument.

A good thing to do when you write help is to give an example of use. Show what SHOULD happen when you call your function on some simple test array, like magic(3).

Another good thing to put in your help is a see also line.

It does seem silly to me that when you type help for this code, it gives you more information about the author than it does about the function itself.

How about the code itself? Sadly, this part is TERRIBLE. Why in the name of god and little green apples did the author use nested loops to do this?

See that min and max would have given all the information the author needed, with a final call to ind2sub to get the actual subscripts of the result. Worse, the author actually calls min or max before the loop itself!!!!!!!!

My rating for this would have been about 3.5 stars before I got into the coding style itself. But solving the problem with nested loops is a ridiculous silly choice.

09 Mar 2010 Hungarian Algorithm for Linear Assignment Problems (V2.2) An extremely fast implementation of the Hungarian algorithm on a native Matlab code. Author: Yi Cao Cao, Yi

Anoop,

Thanks for pointing out the JV algorithm. You may wish to know that I have implemented a Matlab version of the JV algorithm in
http://www.mathworks.com/matlabcentral/fileexchange/26836
Certainly, it will not be as fast as the mex code, but it has no limitation on the cost matrix to be integer. If you test it, please let me know how it works with your application.

Yi

09 Mar 2010 TimeStamp Generates a timestamp. Author: Lutz Bose Mete, Oznur

Thanks Lutz! Very handy piece of code.

09 Mar 2010 SHADOWPLOT Add a shadow to an existing surface plot. Author: Scott Hirsch Kirk, Joseph

line 79: if length(axis==4)

I don't think this achieves the intended purpose. (axis==4) will evaluate to a logical array of either 4 or 6 elements. length(axis==4) will thus equal 4 or 6, so the if-statement will always execute.

It should be: if length(ax)==4
This will execute the if-statement if the axis view is 2D, but not if the view is already 3D.

09 Mar 2010 Face Recognition System Face Recognition System: demo source code Author: Luigi Rosa Nikunj

My final year project is Face recognition using ICA. Can any one help me with it. I mean where to find the source codes and algorithms for ICA

09 Mar 2010 BlobsDemo Image Processing Tutorial to demonstrate the basic concepts to beginner users. Author: Image Analyst C, Krishna

Very useful...great work...

09 Mar 2010 slocDir Counts number source lines of code in a directory tree. (Requires sloc, FIle Exchange ID 3900) Author: David Roberts GUILLAUME, Nicolas

09 Mar 2010 ECG Beat Calculation Calculates ECG beats per minute Author: Arun Kumar Kumar, Arun

09 Mar 2010 ISMEMBERF Floating-point ISMEMBER (i.e., with round-off tolerance) Author: Bruno Luong Komarov, Oleg

Well, I suggest at this point to document this behaviour and to add in the see also line the HISTC.

Something like:
A(i) is member of the set S if the following condition is verified at least once:
k - tol <= A(i) < k + tol for k = S(1)...S(K)
 
Best

09 Mar 2010 Simulink Pro Audio Sample Rate Converter Floating- and fixed-point models of 48 kHz to 44.1 kHz audio sample rate conversion. Author: Steve Conahan kumar, hemanth007

can u please convert digital(CD) into analog by multirate digital signal processing oversampling 8times and show me the simulink

09 Mar 2010 ISMEMBERF Floating-point ISMEMBER (i.e., with round-off tolerance) Author: Bruno Luong Luong, Bruno

Hi Oleg,

This behavior is known (but not documented) due to the use of HISTC as you have correctly pointed out. User should never rely on the threshold tolerance in order to discriminate floats through exact comparison. Please enlarge the tolerance or add point to set member to work around.

Bruno

08 Mar 2010 toolbox for analysis of complex system using fixed points Coweb theorem of the value of derivation fied points in the system Author: Edgar Bernal-Flores Bernal-Flores, Edgar

Goos aplication

08 Mar 2010 Fast and Robust Curve Intersections Computes intersection points of two curves. Author: Douglas Schwarz Schwarz, Douglas

Rui, please email me directly with details of your problem and I will see if I can help.
Doug

08 Mar 2010 txthide A gui to easily hide a text message in a picture. Author: Matt Fig mai

Is there possible to modifify the code to hide a large integer?

xuan,mai3@live.vu.edu.au

08 Mar 2010 Analog / Mixed Signal Examples Extensive collection of examples for analog and mixed signal design work. Author: Dick Benson Panneer Selvam

A wholesome collection of Blocksets for Communication Engineers...

08 Mar 2010 SLM - Shape Language Modeling Least squares spline modeling using shape primitives Author: John D'Errico Andre Guy Tranquille

08 Mar 2010 ISMEMBERF Floating-point ISMEMBER (i.e., with round-off tolerance) Author: Bruno Luong Komarov, Oleg

Dear Bruno,
I want to bring this case to your attention:

tf = ismemberf(2.8, 2.9, 'tol',.1) --> 1
tf = ismemberf(3, 2.9, 'tol',.1) --> 0

It's following histc behaviour on line 287 (lowB <= x < uppB), is this meant?

Regards
Oleg

08 Mar 2010 Goodness of Fit (Modified) Computes goodness of fit for regression model given matrix/vector of target and output values. Author: Richard Crozier Andre Guy Tranquille

08 Mar 2010 RMSE calculates root mean square error from data vector or matrix and the corresponding estimates. Author: Felix Hebeler Andre Guy Tranquille

08 Mar 2010 LSB STEGANOGRAPHY DATA HIDING IN IMAGES USING LSB STEGANOGRAPHY Author: M MANIKANDAN somaiya, brijen

is it possible to scan the hard copy of the stego image and then recover the hidden data plz reply my email brijen.somaiya@gmail.com

08 Mar 2010 continuous wavelet transform and inverse contains functions for computing the continuous wavelet transform and the inverse cwt Author: jon erickson Rastogi, Ravi

Hi Jon, I am also having trouble reconstructing the signal back. I get a vector having all values NAN.

08 Mar 2010 MEX_SHAPE Reads in common ESRI shapefile formats. Author: John Evans Kendall, Anthony

The code worked great, I compiled it on a 64-bit machine with the latest version of shapelib, and everything works well. Some of the help is a bit outdated, but I really can't complain.

08 Mar 2010 dualcursor Add dual vertical cursors to a plot. Author: Scott Hirsch Duchêne, Cédric

Thank you very much for this tool.

Is it possible to use this function on the horizontal axis ?
How do you think it should be difficult to add this ability to work in this case ? (Toogle mode vertical <--> horizontal)

Thank you again.

08 Mar 2010 Visualizing Phasors, an Animated GUI A tool for visualizing phasor (voltage, current, impedance), along with animation. Author: Erik Cheever Jose

Great file and accompanying link with detailed explanation. Thanks

08 Mar 2010 Color Threshold Allows users to interactively select/deselect pixels to threshold images using RGB or HSV filters. Author: Aaron Bílek, Tomáš

Great :)

08 Mar 2010 Anisotropic Diffusion (Perona & Malik) A set of filters that perform 1D, 2D and 3D conventional anisotropic diffusion (gray scale data). Author: Daniel Lopes Kumar , Nitin

Thanks for sharing

 

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