caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] inversion de matrice en caml
@ 2002-05-27 14:06 thomas Icart
  2002-05-27 17:01 ` Laurent Chéno
  2002-05-27 17:43 ` Oleg
  0 siblings, 2 replies; 4+ messages in thread
From: thomas Icart @ 2002-05-27 14:06 UTC (permalink / raw)
  To: caml-list

Je suis en math-spe .Pour mon tipe sur la geometrie des nombres ,j'aurai 
besoin d'un programme qui puisse  m'inverser des matrices de taille au moins 
15*15 dans un temps assez raisonnable.
Je vous remercie d'avance.
Thomas ICART.

_________________________________________________________________
Discutez en ligne avec vos amis, essayez MSN Messenger : 
http://messenger.msn.com
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] inversion de matrice en caml
  2002-05-27 14:06 [Caml-list] inversion de matrice en caml thomas Icart
@ 2002-05-27 17:01 ` Laurent Chéno
  2002-05-27 17:43 ` Oleg
  1 sibling, 0 replies; 4+ messages in thread
From: Laurent Chéno @ 2002-05-27 17:01 UTC (permalink / raw)
  To: thomas Icart; +Cc: caml-list

Le lundi 27 mai 2002, à 04:06 , thomas Icart a écrit :

> Je suis en math-spe .Pour mon tipe sur la geometrie des nombres 
> ,j'aurai besoin d'un programme qui puisse  m'inverser des matrices 
> de taille au moins 15*15 dans un temps assez raisonnable.
> Je vous remercie d'avance.
> Thomas ICART.
>

;-)   tu t'y prends un petit peu tard, non ?   ;-)

Bon, cela dit, tout dépend, comme tu le sais sans doute un peu, du 
type de tes matrices ? ont-elles quelque propriété particulière que 
ce soit ? (matrices symétriques, complexes/réelles, matrices 
creuses, ...)

Quelle précision attends-tu dans les résultats ? ordre de grandeur 
des coefficients ? précision ?

Sait-on a priori quelque chose sur le déterminant des matrices 
considérées ? sur leur conditionnement ?


Laurent


--
Laurent Chéno <mailto:laurent.cheno@ac-paris.fr>
Prof. de mathématiques en PSI* et de l'option informatique en 
MP/MP* au lycée Louis-le-Grand, Paris
http://pauillac.inria.fr/~cheno/

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] inversion de matrice en caml
  2002-05-27 14:06 [Caml-list] inversion de matrice en caml thomas Icart
  2002-05-27 17:01 ` Laurent Chéno
@ 2002-05-27 17:43 ` Oleg
  2002-05-27 21:36   ` Markus Mottl
  1 sibling, 1 reply; 4+ messages in thread
From: Oleg @ 2002-05-27 17:43 UTC (permalink / raw)
  To: caml-list

On Monday 27 May 2002 10:06 am, thomas Icart wrote:
> Je suis en math-spe .Pour mon tipe sur la geometrie des nombres ,j'aurai
> besoin d'un programme qui puisse  m'inverser des matrices de taille au
> moins 15*15 dans un temps assez raisonnable.
> Je vous remercie d'avance.
> Thomas ICART.
>

Typically, responsible programmers will use LAPACK ( 
http://www.netlib.org/lapack/lug/lapack_lug.html ) for all their linear 
algebra needs. LAPACK in turn uses BLAS (http://www.netlib.org/blas/).
If speed is important to you, and your hardware vendor does not supply 
hardware-specific BLAS, consider a self-optimizing version of BLAS called 
ATLAS ( http://math-atlas.sourceforge.net/ ). Up to 10x speed-ups are 
possible with ATLAS compared to generic BLAS. 

If you don't want to "roll your own" interface to LAPACK (as it is in 
FORTRAN), consider LACAML (found at 
http://www.ai.univie.ac.at/~markus/home/ocaml_sources.html ). I haven't tried 
it yet.

BTW, in most cases matrix inversion is not required. To solve A*X=B (where X 
is either a vector or a matrix) use xGESV subroutine (x = C,Z,S,D - denotes 
complex, double complex, float, double respectively). If you insist on 
finding the inverse, use xGETRI.

HTH

Oleg
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] inversion de matrice en caml
  2002-05-27 17:43 ` Oleg
@ 2002-05-27 21:36   ` Markus Mottl
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Mottl @ 2002-05-27 21:36 UTC (permalink / raw)
  To: Oleg; +Cc: caml-list

On Mon, 27 May 2002, Oleg wrote:
> If you don't want to "roll your own" interface to
> LAPACK (as it is in FORTRAN), consider LACAML (found at
> http://www.ai.univie.ac.at/~markus/home/ocaml_sources.html ). I haven't
> tried it yet.

The library currently only contains functions that I have really needed
so far (mostly functions for linear regression + vector operations),
but I have been very careful to write it in such a way that people can
easily add further ones by following the existing design.  If anybody
wants certain functions added, just tell me or even better: send me the
glue code :-)

Regards,
Markus Mottl

-- 
Markus Mottl                                             markus@oefai.at
Austrian Research Institute
for Artificial Intelligence                  http://www.oefai.at/~markus
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-05-27 21:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-05-27 14:06 [Caml-list] inversion de matrice en caml thomas Icart
2002-05-27 17:01 ` Laurent Chéno
2002-05-27 17:43 ` Oleg
2002-05-27 21:36   ` Markus Mottl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).