e함수와 삼각함수의 곱을 그래프로 나타나려고 하는데 자꾸 오류만 뜹니다.
Show older comments
Answers (1)
" * " 대신에 " .* "을 수행해보세요. " * "은 행렬곱이고 " .* "은 원소별곱입니다. 자세한 사항은 아래 문서에서 확인할 수 있습니다.
t = 0:0.1:10;
y = exp(-2.5*t).*[0.1*cos(3.12*t)+ 0.721*sin(3.12*t)]; % Use ".*" instead of "*"
plot(t, y)
Categories
Find more on Networks in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
