How can I format this dsolve argument?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Keith Grey
il 15 Giu 2020
Risposto: Walter Roberson
il 15 Giu 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?
syms x
ode = x * diff(y, x) == 50 * x * diff(y, x, 2) - 40.3 * x + 101;
x_dot = dsolve(ode)
0 Commenti
Risposta accettata
Walter Roberson
il 15 Giu 2020
syms y(x)
ode = x * diff(y, x) == 50 * x * diff(y, x, 2) - 40.3 * x + 101;
x_dot = dsolve(ode)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Ordinary Differential Equations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!