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

    Type Alias DifEqs

    Represents a system of differential equations.

    type DifEqs = {
        equations: Map<string, string>;
        solutionNames: string[];
    }
    Index

    Properties

    equations: Map<string, string>

    A mapping where each key is the name of a function and each value is the right-hand side of its differential equation.

    solutionNames: string[]

    Names of the functions that form the solution of the system.