What's wrong in the code? I cant generate the same graph as the question required.

조회 수: 1 (최근 30일)
function y = f(x)
x = -5:5;
y = sin(x.^2).*exp(cos(x));
plot(x,y)
end

채택된 답변

Chunru
Chunru 2021년 11월 17일
x = -5:0.1:5;
y = sin(x.^2).*exp(cos(x));
plot(x,y)

추가 답변 (1개)

Yusuf Suer Erdem
Yusuf Suer Erdem 2021년 11월 17일
x = linspace(-5,5);
k = sin(x.^2);
l= exp(cos(x));
y = k.*l;
plot(x,y)
USE THIS WAY, IT HELPS. I THINK YOU WERE JUST MISSING 'LINSPACE' COMMAND. GOOD LUCK!

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by