Inline to Anonymous Function
Afficher commentaires plus anciens
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');
Réponse acceptée
Plus de réponses (1)
Fangjun Jiang
le 3 Sep 2020
x =@(t) 5*sin(2*pi*1*t).*exp(-.4*t)'
1 commentaire
Russell Buttriss
le 3 Sep 2020
Catégories
En savoir plus sur Function Creation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!