sketch a signal function

49 visualizaciones (últimos 30 días)
mohamad sawli
mohamad sawli el 3 de Mzo. de 2020
Respondida: Robert U el 4 de Mzo. de 2020
x(t)=-4t

Respuestas (1)

Robert U
Robert U el 4 de Mzo. de 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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by