Communications Toolbox    
mldivide

Matrix left division \ of Galois arrays

Syntax

Description

x = A\B divides the Galois array A into B to produce a particular solution of the linear equation A*x = B. In the special case when A is a nonsingular square matrix, x is the unique solution, inv(A)*B, to the equation.

Examples

The code below shows that A \ eye(size(A)) is the inverse of the nonsingular square matrix A.

Other examples are in Solving Linear Equations.

Limitations

The matrix A must be either

Algorithm

If A is an M-by-N tall matrix where M > N, then A \ B is the same as (A'*A) \ (A'*B).

If A is an M-by-N wide matrix where M < N, then A \ B is the same as A' * ((A*A') \ B). This solution is not unique.


  minpol modmap