Main Content

dispMat

Display Laurent matrix

Since R2021b

    Description

    example

    dispMat(A) displays the Laurent matrix A.

    Examples

    collapse all

    Create two Laurent polynomials:

    • a(z)=z2

    • b(z)=z-3

    lpA = laurentPolynomial(MaxOrder=2);
    lpB = laurentPolynomial(MaxOrder=-3);

    Create the Laurent matrix [a(z)53b(z)].

    lmat = laurentMatrix(Elements={lpA,5;3,lpB});

    Display the matrix.

    dispMat(lmat)
    | z^( 2 )    5.00e+00 |
    |                                        | 
    | 3.00e+00   z^( -3 ) |
    

    Input Arguments

    collapse all

    Laurent matrix, specified as a laurentMatrix object.

    Version History

    Introduced in R2021b