| Original author(s) | Piotr Wendykier |
|---|---|
| Stable release | 0.9.4 / March 21, 2010 |
| Operating system | Cross-platform |
| Type | Library |
| License | Various |
| Website | sites |
Parallel Colt is a set of multithreaded version of Colt. It is a collection of open-source libraries for High Performance Scientific and Technical Computing written in Java. It contains all the original capabilities of Colt and adds several new ones, with a focus on multi-threaded algorithms.
Parallel Colt has all the capabilities of the original Colt library, with the following additions. [1]
Example of singular value decomposition (SVD):
DenseDoubleAlgebraalg=newDenseDoubleAlgebra();DenseDoubleSingularValueDecompositions=alg.svd(matA);DoubleMatrix2DU=s.getU();DoubleMatrix2DS=s.getS();DoubleMatrix2DV=s.getV();Example of matrix multiplication:
DenseDoubleAlgebraalg=newDenseDoubleAlgebra();DoubleMatrix2Dresult=alg.mult(matA,matB);{{cite web}}: Check |url= value (help)