Search the web
Sign In
New User? Sign Up
jsci
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
problem in JSci.maths.LinearMath.eigenSolveSymmetric( )   Message List  
Reply | Forward Message #109 of 369 |
dear sirs,

i have been using JSci recently. it worked fine. however when i have
attempted using the eigenSolveSymmetric(x,v) function, i get an
error saying " cannot resolve symbol" and the error points to the
function.
i have used: LinearMath.eigenvalueSolveSymmetric(x) and it worked
perfectly.
my code looks like this:

double array [][] = new double[][]{
{2,5,1},
{1,4,1},
{1,2,7},
};
JSci.maths.DoubleSquareMatrix x = new DoubleSquareMatrix(array);
double g[] = new double [3];
try {

g = LinearMath.eigenSolveSymmetric(x);

} catch (MaximumIterationsExceededException mxe){
System.out.println(mxe.getMessage());
}

i will be thankfull, if you could tell what is the problem.
yours
salih
21/4/03




Mon Apr 21, 2003 8:10 pm

salih_alborno
Offline Offline
Send Email Send Email

Forward
Message #109 of 369 |
Expand Messages Author Sort by Date

dear sirs, i have been using JSci recently. it worked fine. however when i have attempted using the eigenSolveSymmetric(x,v) function, i get an error saying "...
salih_alborno
Offline Send Email
Apr 21, 2003
8:10 pm

Salih, the second parameter receiving the eigenvectors in eigenSolveSymmetric is missing. There is no function eigenSolveSymmetric with only one parameter. ...
Rolf Wilms
rolf_wilms
Offline Send Email
Apr 21, 2003
8:51 pm

I would also like to point out that the matrix in your example code is ... It is sufficient to just use: double g[]; Regards, Mark ... ...
mj_hale
Offline
Apr 22, 2003
4:48 pm
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help