How can I format this dsolve argument?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Keith Grey
le 15 Juin 2020
Réponse apportée : Walter Roberson
le 15 Juin 2020
I'm not too familiar with solving DE's in matlab, but I keep getting an error when trying to implement this solution. Is there a syntax mistake I'm missing?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/316032/image.png)
syms x
ode = x * diff(y, x) == 50 * x * diff(y, x, 2) - 40.3 * x + 101;
x_dot = dsolve(ode)
0 commentaires
Réponse acceptée
Walter Roberson
le 15 Juin 2020
syms y(x)
ode = x * diff(y, x) == 50 * x * diff(y, x, 2) - 40.3 * x + 101;
x_dot = dsolve(ode)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Ordinary Differential Equations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!