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 Center および File ExchangeMeasurements and Feature Extraction についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by