Registry / utility / jama
library1.0.3javamavenunverified

A basic linear algebra package for Java providing classes for constructing and manipulating real, dense matrices.

<dependency> <groupId>gov.nist.math</groupId> <artifactId>jama</artifactId> <version>1.0.3</version> </dependency>
INSTALL
IMPORT
SIG · JAMA
J
jama
utilityjavav1.0.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Matrix
Jama.Matrix

Creates a matrix and performs multiplication with an identity matrix.

import Jama.Matrix; public class Example { public static void main(String[] args) { double[][] vals = {{1.,2.,3},{4.,5.,6.},{7.,8.,10.}}; Matrix A = new Matrix(vals); Matrix B = Matrix.identity(3, 3); Matrix C = A.times(B); System.out.println(C.get(0, 0)); } }
Debug
Known issues
gotchaJAMA is no longer actively maintained; consider using Apache Commons Math or EJML for new projects.
fix
Migrate to org.apache.commons:commons-math3 for similar functionality.
affects: >=1.0.0
Upgrade
Version history
1.0.3latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
Amazon
1
Resources
jama — mvn dependency:get jama · libregistry