Derivatives for trig functions

17 visualizaciones (últimos 30 días)
Gary Moorer
Gary Moorer el 14 de Jul. de 2020
Respondida: Star Strider el 14 de Jul. de 2020
I am a college student new to Matlab. How do I find the derivative of y with respect to x:
y=sec^-1*(3x^2+1), x>0

Respuesta aceptada

Star Strider
Star Strider el 14 de Jul. de 2020
Start with the Symbolic Math Toolbox:
syms x positive real
y(x) = asec(3*x^2+1);
then use the appropriate function to calculate the symbolic derivative.
If ‘x’ is a vector, use the gradient function to calculate the numeric derivative, and remember to use element-wise exponentiation in the asec argument.
I leave the details to you.
.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by