HP Prime for All

English  Русский 

Syntax

odesolve(Expr,VectVar,VectInitCond,FinalVal,[tstep=Val,curve])

Description

Ordinary Differential Equation solver. Solves an ordinary differential equation given by Expr, with variables declared in VectrVar and initial conditions for those variables declared in VectrInit. For example, odesolve(f(t,y),[t,y],[t0,y0],t1) returns the approximate solution of y'=f(t,y) for the variables t and y with initial conditions t=t0 and y=y0.

Example

odesolve(sin(t*y),[t,y],[0,1],2) returns [1.82241255674]

odesolve — Discussion