Recent content by satinysol

  1. S

    Displaying Multiple Data Sets in a uitable using MATLAB GUI

    For now the data only can show in the first column -L'
  2. S

    Displaying Multiple Data Sets in a uitable using MATLAB GUI

    urgent question for MATLAB uitable This is a GUI with a uitable, i want to display 2 sets of data in column Q and column S by clicking a pushbutton below is my code: peakMag1=transpose(peakMag); peakloc1=transpose(peakloc); dat=peakMag1; set(handles.uitable, 'Visible', 'on')...
  3. S

    How do I call functions in MATLAB using an m-file?

    I want to call this function function varargout = peakfinder(x0, sel, thresh, extrema) which need me to input x0. the command for running this function is [peakMag,peakloc]=peakfinder(x0) which can let me get the values of peakMag and peakloc. then i wrote my own m.file and need to use...
  4. S

    How do I call functions in MATLAB using an m-file?

    I have to make an m-file that asks the user to input two values. Then it performs a series of functions and returns an answer. I have made the functions (each in their own m-file) But I don't understand how you call functions using an m-file. I have to have one main m-file which calls...
  5. S

    How to display a real time graph in the Matlab GUI from simulink block

    I want to display a real time signal from ECG I use simulink block -scope and want it to be display in gui axes This is a code from some other guy function Command1_Callback(hObject, eventdata, handles) button_state = get(hObject,'Value'); if...
  6. S

    Peak detection using MATLAB (signal processing)

    I'm not sure if i should leave this message here,but I'm doing it, here's my problem,like u said i tried with the code ,it was very nice and very useful,it doing well when i input the data under 1200sampling frequency,but when i tried other data under different sampling frequency the result was...
  7. S

    Peak detection using MATLAB (signal processing)

    This is very helpful ,thank you so much ^^
  8. S

    Peak detection using MATLAB (signal processing)

    Can tell me how to proceed this code? I'm really new for this ,thanks
  9. S

    Peak detection using MATLAB (signal processing)

    Hi, I'm also facing same problem, I'm doing a heart signal peak detection project and i attached the plot result , can u tell me how i solve this ? Thanks
Back
Top