how to differentiate this equation
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
if I have this equation

theta=-2*alpha*sin(kn*pi/n)*sin(2*kn*pi*s/L+2*kn*pi*(i)/n+kn*pi/n)
how can I differenat theta(s) to theta_D and theta_DD
0 Commenti
Risposte (1)
KALYAN ACHARJYA
il 2 Mar 2020
Modificato: KALYAN ACHARJYA
il 2 Mar 2020
syms s
theta_D=diff(theta,s);
theta_2D=diff(theta,s,2); %or theta_2D=diff(theta_D,s);
2 Commenti
Walter Roberson
il 2 Mar 2020
diff() can only be used to differentiate symbolic expressions or symbolic functions. If you attempt to differentiate a numeric array but pass in a symbolic variable as the second parameter, or pass in anything that is not a scalar integer (such as a vector of numeric values), then you would get that error.
Vedere anche
Categorie
Scopri di più su Calculus in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!