Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
196 views

How can I multiply a matrix by a vector using JAMA?

I'm trying to create a vector from an array of doubles. I then want to multiply this vector by a matrix. Does anyone know how I can achieve this? Below is a really simple example that I would like to ...
2
votes
4answers
620 views

Java Jama matrix

I am working with Jama Matrix. I used it for LSI. It works all fine. However, when I pass a big matrix like, 8000x8000 it kills my whole system. I am simply calling SVD then reducing matrix size and ...
2
votes
3answers
774 views

java jama matrix problem

I am using jama to calculate SVD. It work very good. If i pass square matrix. For example 2x2 or 3x3 etc. matrix. But when I pass some thing like this 2x3 or 4x8 it give error . I used all of their ...
2
votes
4answers
638 views

How do i print the columns of a JAMA matrix?

I use the JAMA.matrix package..how do i print the columns of a matrix
2
votes
4answers
847 views

Test for invertability using Jama.Matrix

I have a program that uses JAMA and need to test is a matrix can be inverted. I know that I can just try it and catch an exception but that seems like a bad idea (having a catch block as part of the ...
1
vote
2answers
32 views

Java SVD with JAMA or else

I have a cloud of Points and I need the best fitting Line. I'm using JAMA but I don't know why, something is not working. Probably it's me who doesn't get how it works. I have a Nx3 Matrix (this is ...
1
vote
3answers
136 views

How to multiply two 1D matrices using JAMA?

This may be a bit of a silly question and I might also have misunderstood the best way to approach this problem but what I essentially want to do is the following: I want to multiply the following ...
1
vote
3answers
226 views

Exception in thread “main” java.lang.RuntimeException: Matrix is singular

I'm just trying to create an inverse matrix of a 3x3 matrix following JAMA documentation. But every time it's giving me the following error - Exception in thread "main" ...
1
vote
1answer
568 views

Issue with Jama's Eigenvalue decomposition function

I am getting a wrong eigen-vector (also checked by running multiple times to be sure) when i am using matrix.eig(). The matrix is: 1.2290 1.2168 2.8760 2.6370 2.2949 2.6402 1.2168 0.9476 2.5179 ...
0
votes
1answer
78 views

Matrix multiplication using Jama library

I want to multiply 2 matrix using Jama library but it returns: A col: 4 row: 4 B col: 1 row: 4 Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: Matrix dimensions must agree. ...
0
votes
3answers
483 views

java jama array problem

I asked a question before but duffymo said it is not clear so i am going to post it again here. I am using Jama api for SVD calculation. I know very well about jama and SVD. Jama does not work if ...
0
votes
3answers
616 views

Java jama Sigma problem

I am using jama libarary for matrix. I used following matrix but when i tried to get S, it gave me error. 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 11.0 1.0 1.0 0.0 0.0 ...
0
votes
1answer
630 views

Jama.Matrix ClassNotFoundException

I am trying to use Jama package in my code in Linux. In my Main class, I am trying to use Matrix class. Here is my Main class: import Jama.*; class Main { public static void main(String[] args) ...