mathue
    Preparing search index...

    Interface PartialMultiplicativeGroup<T>

    Represents a partial multiplicative group where multiplication is defined for all elements,
    but inverses exist only for certain elements (those that are invertible).

    Type Invertible when Condition
    Matrix det(M) ≠ 0 Non-singular (full rank)
    Quaternion |q| ≠ 0 (non-zero norm) Non-zero quaternion
    interface PartialMultiplicativeGroup<T> {
        multiply(other: T): T;
        invert(): T | null;
        divide(other: T): T | null;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods