Hi...I am trying to create a mirror image for a matrix.IS it possible?
    2 views (last 30 days)
  
       Show older comments
    
    nafila aytija
 on 3 Jun 2016
  
    
    
    
    
    Commented: Star Strider
      
      
 on 3 Jun 2016
            For, example-I have a matrix A=[1 0 0 ;1 1 0; 0 1 1].SO Can it be made like this M=[0 0 1; 0 1 1; 1 1 0]??Thanks in Advance
0 Comments
Accepted Answer
  Star Strider
      
      
 on 3 Jun 2016
        Use the fliplr function:
A = [1 0 0 ;1 1 0; 0 1 1]
B = fliplr(A)
A =
       1     0     0
       1     1     0
       0     1     1
B =
       0     0     1
       0     1     1
       1     1     0
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
