How to transpose rows into columns and columns into rows in
a multi-dimensional array?
Answer Posted / sarath
We Have a predefined method for transposing Matrix i.e
TRANSPOSE().
for ex: We have one Matrix called 'A'
A is the array | 0 -5 8 -7 |
| 2 4 -1 1 |
| 7 5 6 -6 |
Transpose the columns and rows of A.
RES = TRANSPOSE( A )
The result is | 0 2 7 |
| -5 4 5 |
| 8 -1 6 |
! | -7 1 -6 |
| Is This Answer Correct ? | 21 Yes | 5 No |
Post New Answer View All Answers
Is c# substring zero based?
Give an example of a ctype.
What is data quality assurance?
What is helper method in c#?
What is the adv of using System.Text.StringBuilder over System.String?
What is an assembly loader?
What is form feed in c#?
What is the use of main method in c#?
What is a thread? What is multithreading?
What are extender provider components?
Is string null or empty?
What is type checking in c#?
Why is c# used?
Can abstract class be instantiated c#?
If dll and exe files are same it means you can deploy both the files in gac?