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

Method transpose

JSAT/src/jsat/linear/DenseMatrix.java:555–561  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

553 }
554
555 @Override
556 public DenseMatrix transpose()
557 {
558 DenseMatrix toReturn = new DenseMatrix(cols(), rows());
559 this.transpose(toReturn);
560 return toReturn;
561 }
562
563 @Override
564 public void transpose(Matrix C)

Callers 6

testTransform2_2Method · 0.95
testTransform2_3Method · 0.95
qrMethod · 0.95
trainMethod · 0.95

Calls 5

colsMethod · 0.95
rowsMethod · 0.95
getMethod · 0.95
minMethod · 0.45
setMethod · 0.45

Tested by 3

testTransform2_2Method · 0.76
testTransform2_3Method · 0.76