MATRIX

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • srikanth

    #1

    MATRIX

    please give me a source code to find inverse of a matrix

  • Nick Keighley

    #2
    Re: MATRIX

    srikanth wrote:[color=blue]
    > please give me a source code to find inverse of a matrix[/color]

    search the web

    --
    Nick Keighley

    Comment

    • CBFalconer

      #3
      Re: MATRIX

      srikanth wrote:[color=blue]
      >
      > please give me a source code to find inverse of a matrix[/color]

      See below.

      --
      Some informative links:
      news:news.annou nce.newusers
      Latest news coverage, email, free stock quotes, live scores and video are just the beginning. Discover more every day at Yahoo!






      Comment

      • SM Ryan

        #4
        Re: MATRIX

        "srikanth" <adsrikanth@gma il.com> wrote:
        # please give me a source code to find inverse of a matrix
        #
        #
        #

        Look for linear algebra packages with Google. High quality
        inversion algorithms are subtle and involved.

        --
        SM Ryan http://www.rawbw.com/~wyrmwif/
        I have no respect for people with no shopping agenda.

        Comment

        • Charles Krug

          #5
          Re: MATRIX

          > "srikanth" <adsrikanth@gma il.com> wrote:[color=blue]
          > # please give me a source code to find inverse of a matrix
          > #
          > #
          > #
          >[/color]

          For learning purposes, you do a Gaussian reduction exactly as you do it
          in Linear Algebra.

          For other purposes, it matters greatly the nature of the problem you're
          trying to solve.

          Google can point you to references that might help guide you in an
          appropriate approach, given the nature of the problem you're trying to
          solve.

          There are MANY ways to invert a matrix, only a few of which are likely
          to be appropriate to any given problem.

          Comment

          Working...