I am trying to solve differential equation numerically:
y'' + a * y * sin(x) + b * y = 0
with initial conditions:
y(0) = 0
y'(0) = y'(1)
But there are only simple initial conditions in examples. And I can't use solvers like ode45
.
Is there any way to solve differential equation with such initial condition?