• Multiplies two matrices in the linear algebra way. Throws if column length of the left term does not equal to row length of the right term.

    Parameters

    • left: Readonly<{
          nums: Float64Array;
          strides: Strides;
      }>

      The left hand term.

    Returns ((right) => Readonly<{
        nums: Float64Array;
        strides: Strides;
    }>)

    The product matrix of two.

      • (right): Readonly<{
            nums: Float64Array;
            strides: Strides;
        }>
      • Parameters

        • right: Readonly<{
              nums: Float64Array;
              strides: Strides;
          }>

        Returns Readonly<{
            nums: Float64Array;
            strides: Strides;
        }>

Generated using TypeDoc