Skip to content

Commit 20fcbd0

Browse files
author
Tobias Weimer
committed
First commit of JAMA
0 parents  commit 20fcbd0

File tree

91 files changed

+19548
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+19548
-0
lines changed

.classpath

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Jama</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.7
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.source=1.7

ChangeLog

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2012-11-09 Bruce Miller
2+
* Version 1.0.3 Released.
3+
* Patched hqr2 method in Jama.EigenvalueDecomposition
4+
to avoid infinite loop;
5+
Thanks Frederic Devernay <[email protected]>
6+
* Updated unchecked type coding in Matrix read.
7+
* Added serialization ID to Jama.Matrix and Decomposition classes.
8+
* Cleaned up javadoc documentation to Jama.Matrix and Decomposition classes.
9+
2005-07-13 Bruce Miller
10+
* Version 1.0.2 Released.
11+
12+
2005-07-12 Bruce Miller
13+
* Although SVD sometimes fails on cases m < n,
14+
the test code, apparently successfully, invokes
15+
SVD to compute rank on an m<n matrix. Deferring
16+
proposal to signal error on m < n, for now.
17+
Possible fix to generalize SVD to come later.
18+
19+
2005-03-04 Roldan Pozo
20+
* Updated CholeskyDecomposition to fix problem with scaling by
21+
diagonals; modified TestMatrix to better test this case.
22+
23+
2003-07-28 Cleve Moler
24+
* Updated SingularValueDecomposition to repair lack of convergience
25+
on rank deficient matrices.
26+
* Note that SVD still doesn't handle m < n
27+
Apparently this case can be handled by a pre-transposition,
28+
or more directly by a modification to the source, but this
29+
modified version isn't available yet.
30+
31+
2000-09-11 Bruce Miller <[email protected]>
32+
* Version 1.0.1 Released.
33+
34+
2000-09-11 Bruce Miller <[email protected]>
35+
* Jama.Matrix print methods which create a NumberFormat, now set its
36+
Locale to US so that the reader will recognize them even when the
37+
default locale is not US. Similar change to Jama.test.TestMatrix.
38+
(Thanks Ulrich Eberhardinger <[email protected]>)
39+
40+
1998-08-05 The Jama Team
41+
* Initial Version released (1.0.0)
42+

JamaTestMatrix.out

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
8.1726E-01 3.1717E-01 7.0230E-01 6.0794E-01
3+
6.6316E-01 7.0122E-01 6.9299E-01 2.0350E-01
4+
3.1614E-01 5.9813E-01 2.0769E-01 2.3913E-01
5+

TMPMATRIX.serial

222 Bytes
Binary file not shown.

bin/jama2/CholeskyDecomposition.class

1.59 KB
Binary file not shown.
9.01 KB
Binary file not shown.

bin/jama2/LUDecomposition.class

2.43 KB
Binary file not shown.

bin/jama2/Matrix.class

11.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)