flipUpDown

Flip the rows of a matrix in up/down direction

Information

This information is part of the Modelica Standard Library maintained by the Modelica Association.

Syntax

         A_fud = Matrices.flipUpDown(A);

Description

Function flipUpDown computes from matrix A a matrix A_fud with flipped rows, i.e., A_fud[i,:]=A[n-i+1,:], i=1,..., n.

Example

  A = [1, 2,  3;
       3, 4,  5;
      -1, 2, -3];

  A_fud = flipUpDown(A);

  results in:

  A_fud  = [-1, 2, -3;
             3, 4,  5;
             1, 2,  3]

See also

Matrices.flipLeftRight

Syntax

Aflip = flipUpDown(A)

Inputs (1)

A

Type: Real[:,:]

Description: Matrix to be flipped

Outputs (1)

Aflip

Type: Real[size(A, 1),size(A, 2)]

Description: Flipped matrix