This is my attempt to generate and plot this signal .. which one of these is right? .. please help
1 view (last 30 days)
Show older comments
This is my attempt to generate and plot this signal
which one of these is right? .. please help
x (t)=π[(t -3)/A ]+π[(t -C) /B]
A = 3, B = 4 and C = 4.
syms X t;
y1 =rectangularPulse(t-3\3); %pi(t-3\3)
y2 =rectangularPulse(t-4\4); %pi(t-4\4)
x=y1+y2;
fplot(x); %to make (2*2)figure
ezplot(x,[0 20 0 10]); %to plots the signal
title('X2(t) = pi( ( t-3 ) /3 )+ pi( ( t-4) /4 ) '); %to make title for figure
xlabel('t');
ylabel('X(t)');
grid on;
% ****************************************
syms t
A=3
B=4
C=4
t= 0: 0.02:5;
u=t>= 3+0.5*A;
u1=t>= 3-0.5*A;
u2=t>= C+0.5*B;
u3=t>= C-0.5*B;
X= u-u1+u2-u3;
plot(t,X)
1 Comment
Accepted Answer
madhan ravi
on 5 Jun 2021
A = 3;
[B, C] = deal(4);
u = @(t) t >= 3 + 0.5 * A;
u1 = @(t) t >= 3 - 0.5 * A;
u2 = @(t) t >= C + 0.5 * B;
u3 = @(t) t >= C - 0.5 * B;
X = @(t) u(t) - u1(t) + u2(t) - u3(t);
fplot(X)
More Answers (0)
See Also
Categories
Find more on Bartlett 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!