Code For Concatenation of Two Signals: All All
Code For Concatenation of Two Signals: All All
Code For Concatenation of Two Signals: All All
clc;
clear all;
close all;
t = 0:.0001:2;
a=2;
x=a*sin(2*pi*2*t);
subplot(3,1,1)
plot(t,x);
hold on
t = 2:0.0001:4;
b=1;
y = b*sin(2*pi*5*t);
subplot(3,1,2)
plot(t,y)
t = 0:.0001:2;
x=a*sin(2*pi*2*t);
subplot(3,1,3)
plot(t,x);
hold on
t = 2:0.0001:4;
y = b*sin(2*pi*5*t);
subplot(3,1,3);
plot(t,y)