Skip to content
Advertisement

Transposing a matrix from a 2D array

I’m self teaching myself some java and I’m stuck on creating a 2D array that initializes it with random values and then creates the transpose of the array.

An example output is:

JavaScript

Original matrix

JavaScript

Transposed matrix

JavaScript

^ Should be the final output. Some help with the code would appreciated!

I would like to code to generate error messages if the number of rows or columns is outside the specified range. And for if to read the matrix elements from the command line and not generate them randomly.

JavaScript

Advertisement

Answer

This is a simple method that return an int[][] of the transposed matrix…

JavaScript

Than to print a 2D matrix you can use a method like this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement