Define Target Signals input and output data

Define input and output data

what is defferint of data flow and control flow,sensing and input,analog output,target position,export data,import data,vector signal generator,rf analog signal generator,agn signal relays,signal generator,sensor signals,what is data flow testing,what is data flow diagram,ginput,input error,test and measurement systems,data flow and control flow,perbandingan data frequency respon,signal relays


>> dt = 0.01; % time step [seconds]
t1 = 0 : dt : 3; % first time vector [seconds]
t2 = 3+dt : dt : 6; % second time vector [seconds]
t = [t1 t2]; % complete time vector [seconds]
% define signal
y = [sin(4.1*pi*t1) .8*sin(8.3*pi*t2)];
% plot signal
plot(t,y,'.-')
xlabel('Time [sec]');
ylabel('Target Signal');
grid on
ylim([-1.2 1.2])

Post a Comment

0 Comments