Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: solver for system of linear equation in java for large matrices (finite element program)

  1. #1
    Junior Member
    Join Date
    Jan 2014
    Location
    israel
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default solver for system of linear equation in java for large matrices (finite element program)

    hi friends!

    I am a student for second degree at mechanical engineering and i develop a finite element code at java.

    i looking for efficiency solver and fast for large, sparse , symmetric and positive define matrices .

    i used in jblas but i encounter in problem when the matrix has high condition number(ill condition number) and i get error for singular matrix while in mathematica i succeed to solve that system without problems...

    do you knows for good solver and fast solver package in java can i use for solving that system?

    thanks!


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: solver for system of linear equation in java for large matrices (finite element program)

    I have no personal experience, but you might check out EJML. Otherwise, Googling for another suitable package is recommended.

  3. #3
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: solver for system of linear equation in java for large matrices (finite element program)

    Also have a look at Apache Commons Math and/or Weka

  4. #4
    Junior Member
    Join Date
    Jan 2014
    Location
    israel
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: solver for system of linear equation in java for large matrices (finite element program)

    Quote Originally Posted by copeg View Post
    Also have a look at Apache Commons Math and/or Weka
    thanks alot! i will try it

Similar Threads

  1. Writing a program for system of linear equations.
    By JavaA123Chris in forum What's Wrong With My Code?
    Replies: 8
    Last Post: June 4th, 2014, 07:48 PM
  2. A couple of issues with my quadratic equation solver.
    By EatMyBible in forum What's Wrong With My Code?
    Replies: 3
    Last Post: January 10th, 2013, 08:52 PM
  3. Solving linear equation systems including sparse matrices
    By GregXel in forum Java Theory & Questions
    Replies: 1
    Last Post: November 24th, 2012, 01:05 PM
  4. quadratic equation solver help!
    By overlord in forum Algorithms & Recursion
    Replies: 2
    Last Post: October 20th, 2011, 11:39 AM
  5. Linear Equation Help !!!
    By thangavel in forum Algorithms & Recursion
    Replies: 1
    Last Post: January 13th, 2011, 06:32 AM