From: dale on 5 Aug 2010 14:47 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 5 Aug 2010 14:54 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 5 Aug 2010 15:01 thanks again walter
|
Pages: 1 Prev: Complex integra problem Next: matlab, fuzzy, image processing, watermarking, Help |