How do I plot the derivative of a function?
Show older comments
Already have the derivative 1- (sinx)/(squar(x))-(squar(x))(cos(x)) just don't know how to plot it via code
Answers (3)
Sulaymon Eshkabilov
on 1 Oct 2022
Use syms and fplot(), e.g.:
syms x
fplot()
1 Comment
Batuhan Yildiz
on 1 Oct 2022
Sulaymon Eshkabilov
on 1 Oct 2022
Edited: Sulaymon Eshkabilov
on 1 Oct 2022
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.
1 Comment
Batuhan Yildiz
on 1 Oct 2022
It is very simple, e.g.:
x = [-3, -2.5 -2 -1 0 1 2 3];
y= sin(2*x);
plot(x, y)
Categories
Find more on Calculus 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!
