how to differentiate a function and then evaluate at a predefined variable?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
sam plant
el 6 de Nov. de 2018
Comentada: madhan ravi
el 6 de Nov. de 2018
If i wanted to differentiate f=x*y with respect to y and then evaluate at a value y = 6 say. how would i do this? i would write the code syms y f=x*y g=diff(f) but then how would i go about the evaluation because it seems y is now fixed as a symbol. Also, i have this as predefined input values x,y so i would like to use the y value predefined as i'm writing it in a function
0 comentarios
Respuesta aceptada
madhan ravi
el 6 de Nov. de 2018
syms x y
f=x*y
A=diff(f,y)
subs(A,y,6)
3 comentarios
madhan ravi
el 6 de Nov. de 2018
Anytime :) , I understood that you needed an example to know the functions , Happy Matlab(ing)
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!