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');

 Akzeptierte Antwort

Alan Stevens
Alan Stevens am 3 Sep. 2020

0 Stimmen

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

Weitere Antworten (1)

Fangjun Jiang
Fangjun Jiang am 3 Sep. 2020

0 Stimmen

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

Kategorien

Mehr zu Function Creation finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by