sketch a signal function

11 次查看(过去 30 天)
mohamad sawli
mohamad sawli 2020-3-3
回答: Robert U 2020-3-4
x(t)=-4t

回答(1 个)

Robert U
Robert U 2020-3-4
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

类别

Help CenterFile Exchange 中查找有关 Measurements and Feature Extraction 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by