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