From: dale on
Hi guys,
i'd like some help on the following:

If i have matrix :

A = [ 5 6 7 32;
11 8 9 70;
67 3 28 45]

But I want to switch around the rows such that the matrix would like like the following:

A = [ 32 7 6 5;
70 9 8 11;
45 28 3 67]

How can I do this?

thanks
From: Walter Roberson on
dale wrote:

> i'd like some help on the following:
>
> If i have matrix :
>
> A = [ 5 6 7 32;
> 11 8 9 70;
> 67 3 28 45]
>
> But I want to switch around the rows such that the matrix would like
> like the following:
>
> A = [ 32 7 6 5;
> 70 9 8 11;
> 45 28 3 67]
>
> How can I do this?

A = fliplr(A);
From: dale on
thanks again walter