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,a21dfb63457ea960,start X-Google-Attributes: gid103376,public From: boaz@usa.pipeline.com(Boaz Chow) Subject: array of matrices Date: 1996/05/02 Message-ID: <4m9aeb$d0e@news2.h1.usa.pipeline.com>#1/1 X-Deja-AN: 152657436 x-pipeuser: boaz x-pipehub: usa.pipeline.com organization: Pipeline USA newsgroups: comp.lang.ada x-pipegcos: (Boaz Chow) Date: 1996-05-02T00:00:00+00:00 List-Id: Hi there, I need to do matrix multiplication with arrays : A1 5x15 A2 15x7 A3 7X25 I want to set up a variable for array (1..N) of Matrix; type Matrix is array (integer range <>, integer range <>) of integer; My question is how can I setup an array for that? I want something like this : A(1) := ( (1,2,3,4,5), (2,3,4,5,6), etc... ); and A(2) := ( (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15), etc... ); I know this won't work : A : array (1..N) of Matrix; please email me asap. Thanks! ______ Meow \ OO / _/ :(__ =) U \\ http://www.sci.csupomona.edu/~cchow