e MATLAB builtin dy MATLAB builtin function to numerically s
e MATLAB built-in dy ,MATLAB built-in function to numerically solve: for 13x35 with dx 4 ot the solution
Solution
eqn1=\'Dy=(-x*x + x*x*x*exp(-y)/4)\';%Defining equation in variable
s=dsolve(eqn1,\'y(1)==1\',\'x\')%Soving the differential Equation using dsolve
ezplot(s,[1,5])%Plotting the above equation
