Hi, how can i proceed with this question, everytime i plot it, it doesn't show me my line. Can u guys help me
조회 수: 1 (최근 30일)
이전 댓글 표시
x = -10 : 0.01 : 10;
y = (exp(x)/ sin(x)) + 0.3;
plot(x,y)
댓글 수: 0
채택된 답변
Jan Studnicka
2019년 11월 8일
You are missing . before /. See:
x = -10 : 0.01 : 10;
y = (exp(x)./ sin(x)) + 0.3; % use ./ instead of /
plot(x,y)
추가 답변 (1개)
the cyclist
2019년 11월 8일
편집: the cyclist
2019년 11월 8일
It's because you used a matrix division instead of an element-wise division to calculate y. Try this instead:
y = (exp(x)./ sin(x)) + 0.3;
Note the use of ./ in place of just / in the formula.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!