SSintegrΒΆ

Builds a state-space model of an integrator.

  • method: Numerical scheme. Available options are:
    • 1tay: 1st order Taylor (fwd)

      I[ii+1,:]=I[ii,:] + ds*F[ii,:]

    • trap: I[ii+1,:]=I[ii,:] + 0.5*dx*(F[ii,:]+F[ii+1,:])

    Note: other option can be constructured if information on derivative of F is available (for e.g.)