我有一个二维矩阵。我怎样才能在目标c中转置它?
我是否使用嵌套循环来转置它,因为我在数组和 mutablearray 类中找不到任何方法。
我的 matix 是 3x3。
NSMutableArray *row1=[NSMutableArray arrayWithObjects:@1,@2,@3, nil];
NSMutableArray *row2=[NSMutableArray arrayWithObjects:@4,@5,@6, nil];
NSMutableArray *row3=[NSMutableArray arrayWithObjects:@7,@8,@9, nil];
NSMutableArray *twoDArray=[NSMutableArray arrayWithObjects:row1,row2,row3, nil];
NSLog(@"%@",twoDArray);
在这之后该怎么办?