sketch a signal function
34 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
x(t)=-4t
0 Kommentare
Antworten (1)
Robert U
am 4 Mär. 2020
Hi mohamad sawli,
your question lacks some descriptive text. I guess you would like to plot the function.
% define function
myFunction = @(t) -4*t;
% [opt] define plot range
lb = -10;
ub = 10;
% plot using fplot
fplot(myFunction,[lb,ub])
Features used:
Kind regards,
Robert
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!