function with a condition..
이전 댓글 표시
Consider the function
y = f(t) = (exp^(-2.3*t))*((-1.2*cos(1.345*t))+(3.4*sin(1.345*t))), t>= 0
(a) Produce a graph of the function along with the two lines defining the region
abs(y) < 0.1.
(b) Use fzero in conjunction with your plot to identify the time τ at which
abs(f(t)) < 0.1 for all t > τ .
...
so For part A..
I did..
syms x t
t >= 0;
f = @(t) (exp^(-2.3*t))*((-1.2*cos(1.345*t))+(3.4*sin(1.345*t)));
y = f;
abs (y) < 0.1
i dont think this is how it should be done...
Since it is my first time using matlab i don't know how to code this..
Can you guys help me out...!!!??
also help me for part B..
i just dont get it.... QQ
댓글 수: 2
Stephen23
2015년 9월 29일
What does the exp^(...) syntax mean? What is exp ?
Walter Roberson
2015년 9월 29일
Remove the ^ to get exp(-2.3*t)
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Plot Settings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!