Recent content by kay310

  1. K

    Plot signal from list of data in MATLAB

    can anyone help me in load a .m file and plot the signal out? using this way: [Filename, PathName] = uigetfile('*.m','Select the M-file');
  2. K

    Plot signal from list of data in MATLAB

    I'm now actually unable to load the .mat file using 'load' command. I doing this way in m-file: load filename; [x,y] = size(filename); t = 1:y; plot(t, filename); %the filename is in .mat format
  3. K

    Peak detection using MATLAB (signal processing)

    oh I get it already. Thanks for your help. Thanks so much.
  4. K

    Peak detection using MATLAB (signal processing)

    Thanks for help. But, what is the 'successive values' means?
  5. K

    Peak detection using MATLAB (signal processing)

    I'm actually can't really understand what you means. Would you mind to explain more to me?
  6. K

    Peak detection using MATLAB (signal processing)

    I'm doing signal processing using MATLAB. But facing problem when doing Peak Detection. This is the signal that I used for the processing: This is what i wish to do: a) the horizontal line is the threshold point and b) the circle is the peak detection Can anyone help me...
  7. K

    Plot signal from list of data in MATLAB

    I want to load a .mat file which contain 500 column of data in it and plot the signal out through the GUI using .m file. Can anyone help me on the code?
Back
Top