How do I plot the derivative of a function?

2 visualizzazioni (ultimi 30 giorni)
Batuhan Yildiz
Batuhan Yildiz il 1 Ott 2022
Already have the derivative 1- (sinx)/(squar(x))-(squar(x))(cos(x)) just don't know how to plot it via code

Risposte (3)

Sulaymon Eshkabilov
Sulaymon Eshkabilov il 1 Ott 2022
Use syms and fplot(), e.g.:
syms x
fplot()

Sulaymon Eshkabilov
Sulaymon Eshkabilov il 1 Ott 2022
Modificato: Sulaymon Eshkabilov il 1 Ott 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 Commento
Batuhan Yildiz
Batuhan Yildiz il 1 Ott 2022
One last thing what would happend if you had to add x=[1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 5.5 6.0] to the codding? What would it look like?

Accedi per commentare.


Sulaymon Eshkabilov
Sulaymon Eshkabilov il 1 Ott 2022
It is very simple, e.g.:
x = [-3, -2.5 -2 -1 0 1 2 3];
y= sin(2*x);
plot(x, y)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by