help in a GUI, basic signal
Show older comments
how can I do that in a GUI interface. for example: I need the user to insert amplitude, frequency and offset so that a Rectangular signal is projected with those parameters that the user defined in the GUI
A = str2double(get(handles.edit1,'String')); %Amplitude
f = str2double(get(handles.edit2,'String')); %Frecuency
phi = str2double(get(handles.edit3,'String')); %offset
phi2= phi*pi/180;
......
Answers (0)
Categories
Find more on Specialized Power Systems in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!