sketch a signal function

조회 수: 35 (최근 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에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by