MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / transpose

Method transpose

JSAT/src/jsat/linear/Matrix.java:440–445  ·  view source on GitHub ↗

Returns a new matrix that is the transpose of this matrix. @return a new matrix A '

()

Source from the content-addressed store, hash-verified

438 * @return a new matrix <tt>A</tt>'
439 */
440 public Matrix transpose()
441 {
442 Matrix toReturn = new DenseMatrix(cols(), rows());
443 this.transpose(toReturn);
444 return toReturn;
445 }
446
447 /**
448 * Overwrites the values stored in matrix <i>C</i> to store the value of

Callers 15

qrMethod · 0.95
trainMethod · 0.95
setUpTransformMethod · 0.95
testTransposeMethod · 0.45
testLup_0argsMethod · 0.45
testQr_0argsMethod · 0.45

Calls 2

colsMethod · 0.95
rowsMethod · 0.95