How do I plot the derivative of a function?
조회 수: 2 (최근 30일)
이전 댓글 표시
Already have the derivative 1- (sinx)/(squar(x))-(squar(x))(cos(x)) just don't know how to plot it via code
댓글 수: 0
답변 (3개)
Sulaymon Eshkabilov
2022년 10월 1일
편집: Sulaymon Eshkabilov
2022년 10월 1일
To plot sin(2*x), e.g.:
syms x
fplot(x, sin(2*x), [-pi, pi]), grid on
xlabel('x'), ylabel('sin(2*x)')
Apply this exercise for your exercise.
Sulaymon Eshkabilov
2022년 10월 1일
It is very simple, e.g.:
x = [-3, -2.5 -2 -1 0 1 2 3];
y= sin(2*x);
plot(x, y)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!