From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,85917c9414146b3f X-Google-Attributes: gid103376,public From: Robert A Duff Subject: Re: Linear Algebra package for Ada ? Date: 2000/04/25 Message-ID: #1/1 X-Deja-AN: 615464012 Sender: bobduff@world.std.com (Robert A Duff) References: <8dv75n$qi1$1@news.uit.no> <8e05ir$lc$1@nnrp1.deja.com> <3904ACD0.3FE0EEDC@freesurf.fr> Organization: The World Public Access UNIX, Brookline, MA Newsgroups: comp.lang.ada Date: 2000-04-25T00:00:00+00:00 List-Id: Laurent GASSER writes: > Beware that Fortran is one of the rare language to store > matrix entries column-wise. Most of the others do it > row-wise. So you may have to work with transposed matrices > somewhere... You can use pragma Convention(Fortran) to cause the Ada compiler to store matrices column-wise. - Bob