Java Matrix Transpose transpose(double[][] matrix)

Here you can find the source of transpose(double[][] matrix)

Description

transpose

License

Open Source License

Declaration

public static double[][] transpose(double[][] matrix) 

Method Source Code

//package com.java2s;
/* ***** BEGIN LICENSE BLOCK *****
 *
 * Copyright (c) 2005-2007 Universidade de Sao Paulo, Sao Carlos/SP, Brazil.
 * All Rights Reserved.//from  ww  w.  jav  a 2 s  .  c om
 *
 * This file is part of Projection Explorer (PEx).
 *
 * How to cite this work:
 *  
@inproceedings{paulovich2007pex,
author = {Fernando V. Paulovich and Maria Cristina F. Oliveira and Rosane 
Minghim},
title = {The Projection Explorer: A Flexible Tool for Projection-based 
Multidimensional Visualization},
booktitle = {SIBGRAPI '07: Proceedings of the XX Brazilian Symposium on 
Computer Graphics and Image Processing (SIBGRAPI 2007)},
year = {2007},
isbn = {0-7695-2996-8},
pages = {27--34},
doi = {http://dx.doi.org/10.1109/SIBGRAPI.2007.39},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
 *  
 * PEx is free software: you can redistribute it and/or modify it under 
 * the terms of the GNU General Public License as published by the Free 
 * Software Foundation, either version 3 of the License, or (at your option) 
 * any later version.
 *
 * PEx is distributed in the hope that it will be useful, but WITHOUT 
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 
 * for more details.
 *
 * This code was developed by members of Computer Graphics and Image
 * Processing Group (http://www.lcad.icmc.usp.br) at Instituto de Ciencias
 * Matematicas e de Computacao - ICMC - (http://www.icmc.usp.br) of 
 * Universidade de Sao Paulo, Sao Carlos/SP, Brazil. The initial developer 
 * of the original code is Fernando Vieira Paulovich <fpaulovich@gmail.com>, 
 * Roberto Pinho <robertopinho@yahoo.com.br>.
 *
 * Contributor(s): Rosane Minghim <rminghim@icmc.usp.br>
 *
 * You should have received a copy of the GNU General Public License along 
 * with PEx. If not, see <http://www.gnu.org/licenses/>.
 *
 * ***** END LICENSE BLOCK ***** */

public class Main {
    public static double[][] transpose(double[][] matrix) {
        double[][] transpMatrix = new double[matrix[0].length][];

        for (int i = 0; i < matrix[0].length; i++) {
            transpMatrix[i] = new double[matrix.length];

            for (int j = 0; j < matrix.length; j++) {
                transpMatrix[i][j] = matrix[j][i];
            }
        }

        return transpMatrix;
    }
}

Related

  1. transpose(double[] m)
  2. transpose(double[][] A)
  3. transpose(double[][] arr)
  4. transpose(double[][] ary)
  5. transpose(double[][] in)
  6. transpose(double[][] matrix)
  7. transpose(final double[][] A)
  8. transpose(final double[][] m)
  9. transpose(final double[][] original)