How can I use anonymous functions to make this plot?
clear all;clc;
x =inline('5*sin(2*pi*1*t).*exp(-.4*t)','t');
t = (-10:.01:10);
plot(t,x(t));
xlabel ('t (seconds)');
ylabel ('Ámplitude');

 채택된 답변

Alan Stevens
Alan Stevens 2020년 9월 3일

0 개 추천

Simply replace your x = inline... etc expression with
x = @(t) 5*sin(2*pi*1*t).*exp(-.4*t);

추가 답변 (1개)

Fangjun Jiang
Fangjun Jiang 2020년 9월 3일

0 개 추천

x =@(t) 5*sin(2*pi*1*t).*exp(-.4*t)'

카테고리

도움말 센터File Exchange에서 Function Creation에 대해 자세히 알아보기

제품

릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by