MATLAB: How to find solution for differential (dy/dx) for 2 conditions

differential equations

I want to solve a differential dy/dx for 2 conditions as x tends to infinity and x tends to zero. Is there any way I can do that in matlab

Best Answer

Hi it depends on the following two ways:
1. If it is a differential equation, you can use numerical methods (ODE45, etc) or analytical technique (solve) to solve the given differential equation.
2. If it is differential, then you have to provide the function 'y' i.e y = f(x); and then you can follow limit approach. To compute limit you can adopt symbolic approach (limit).
Related Question