Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Just wondering how to I plot these functions into Matlab?

1 Ansicht (letzte 30 Tage)
John Marl
John Marl am 1 Nov. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Just need help plotting these two functions into Matlab

Antworten (1)

Birdman
Birdman am 2 Nov. 2018
Try this:
syms x(t) h(t)
x(t)=piecewise(t>=-1 & t<=1,1,t<-1 | t>1,0)
h(t)=rectangularPulse((t-1)/4)
t=-5:0.01:5;
figure(1);plot(t,x(t))
figure(2);plot(t,h(t))

Tags

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by