Plotting with dsolve for ODE

3 vues (au cours des 30 derniers jours)
Christian Zimmerman
Christian Zimmerman le 20 Jan 2022
I have created a slope field, now I wish to overlay a single curve for the function that satisfies the equation. below is code so far.
clear
clc
[x,y] = meshgrid(-5:0.4:5,-5:0.4:5);
dydx = x.^2+y.^2-1;
L = sqrt(1+dydx.^2);
quiver(x,y,1./L,dydx./L,'k')
hold on
axis([-3 3 -3 3])
I have attempted to continue like this Unsucccessfuly:
syms y(x)
func = dsolve(diff(y,1) == x^2+y^2-1,y(0) == 0)
fplot(func,[-3 3])
Thank you for your assistance.

Réponses (0)

Catégories

En savoir plus sur Numerical Integration and Differential Equations dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by