Please check if my work is correct

조회 수: 1 (최근 30일)
Rama a
Rama a 2021년 6월 4일
편집: Image Analyst 2021년 6월 4일
Its my first time using matlab , so please tell me what I'm doing wrong here :
A. x (t)=π[(t -3)/A ]+π[(t -C) /B]
A = 3, B = 4 and C = 4.
A. x (t)=π[(t -3)/3 ]+π[(t -4) /4]
syms X t;
y1 =rectangularPulse(2,5,t); %pi(t-3\3)
y2 =rectangularPulse(2,6,t); %pi(t-4\4)
x=y1+y2;
subplot(2,2,2); %to make (2*2)figure
ezplot(x,[0 20 0 10]); %to plots the signal
title('X2(t) = π( ( t-3 ) /3 )+ π( ( t-4) /4 ) '); %to make title for figure
xlabel('t');
ylabel('X(t)');
grid on;

답변 (0개)

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by