Use a MATLAB built-in function to numerically solve dy dx for with 0£1-5 y(0)=3 2x = Plot the numerical solution Show transcribed image text Use a MATLAB built-in function to numerically solve dy dx for with 0£1-5 y(0)=3 2x = Plot the numerical solution
Solution
`Hey,
Note: Brother in case of any queries, just comment inbox I would be very happy to assist all your queries
clc
clear all
close all
f=@(x,y) (x^2)*sqrt(y)/5-2*x;
xspan=[0,5];
y0=3;
[X,Y]=ode45(f,xspan,y0);
plot(X,Y);
Kindly
OR
OR