MaxpMat

Mat – Max plus matrix data type
m2mp – Max plus matrix data type

Calling sequence

Ap=maxplus(A)  
Ap=m2mp(A)

Parameters

Description
The MaxpMat data type is the Max plus matrix numerical object. Internally numerical matrices MaxpMat type are stored by default as arrays of double.

Operations on matrices

Methods from the matint interface

Extraction, insertion, deletion

Empty matrices
Empty matrices are matrices with zero rows or zero columns. Operations with empty matrices are compatible with linear algebra operations. The m x n zero matrix can be factorized as the empty m x 0 matrix * the 0 x n matrix.

For loop control
With a matrix A:

     for col=A  
       ....  
     end

is a loop with size(A,2) iterations, the loop variable col being equal to the ith column of A at the i-th iteration.

Some functions

See also

Authors jpc