Binary operators

next - skip - up - start

The package supports binary operations

    X = A + B      // matrix addition
    X = A - B      // matrix subtraction
    X = A * B      // matrix multiplication
    X = A.i() * B  // equation solve (square matrix A)
    X = A | B      // concatenate horizontally (concatenate the rows)
    X = A & B      // concatenate vertically (concatenate the columns)
    X = SP(A, B)   // elementwise product of A and B (Schur product)

Notes: