Hello
My program plots 1xtime triagle
but i just want that it plots 2xtime (with repmat)
How can i do it?
thx
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
A = 3
f = 200
tend = 0.01
t = round (tend)
N0 = 10
fs = N0*f
N = round(tend*fs)
t1 = 0:0.005:N0/4
t2 = (N0/4):0.005:(3/4)*N0
t3 =...
Hello.
function Sinus_pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to Sinus_pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
x=-5:0.02:5;
y=A*sin(2*pi*x*f)...