diff-grok - v1.0.9
    Preparing search index...

    Type Alias Func

    Func: (t: number, y: Float64Array, output: Float64Array) => void

    Represents the right-hand side function F(t, y) of an ODE system.

    Type Declaration

      • (t: number, y: Float64Array, output: Float64Array): void
      • Parameters

        • t: number

          The independent variable.

        • y: Float64Array

          The current values of the system's state variables.

        • output: Float64Array

          A preallocated array where the computed derivatives should be written. This approach avoids unnecessary memory allocations and improves performance.

        Returns void