Inline to Anonymous Function

조회 수: 2 (최근 30일)
Russell Buttriss
Russell Buttriss 2020년 9월 3일
댓글: Russell Buttriss 2020년 9월 3일
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일
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일
x =@(t) 5*sin(2*pi*1*t).*exp(-.4*t)'

카테고리

Help CenterFile 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