Thread: Matrix determinant which libraries?

  1. #1
    Registered User
    Join Date
    Jul 2005
    Posts
    31

    Matrix determinant which libraries?

    Hello,

    What is the best way to find the determinant of matrix using C code?

    I have heard about cblas and clinpack but I couldn't find anything in the way of documentation or example code for this case.

    I have another questions, these sort of matrix operation sounds like it could be hardware accelerated does anybody know which libraries allow this?

    The solution that I am using at the moment is GNU Scientific Library, http://www.cygwin.com/ml/gsl-discuss.../msg00193.html

    Cheers,

    Dan

  2. #2
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    AMD makes an optimized version that works on both AMD and Intel processors:
    http://developer.amd.com/acml.jsp

    Intel also has one, but it's ONLY going to work on Intel procesors, not AMD processors (despite the AMD processors being perfectly capable of doing this, as proven by patching the library to ignore the processor manufacturer check).

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C - access violation
    By uber in forum C Programming
    Replies: 2
    Last Post: 07-08-2009, 01:30 PM
  2. matrix determinant
    By roaan in forum C Programming
    Replies: 1
    Last Post: 06-30-2009, 12:44 PM
  3. Matrix Help
    By HelpmeMark in forum C++ Programming
    Replies: 27
    Last Post: 03-06-2008, 05:57 PM
  4. What is a matrix's purpose in OpenGL
    By jimboob in forum Game Programming
    Replies: 5
    Last Post: 11-14-2004, 12:19 AM