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,FREEMAIL_FROM,XPRIO, XPRIO_SHORT_SUBJ autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6b01c1973ed36f86,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-09-23 05:11:12 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!news2.telebyte.nl!npeer.de.kpn-eurorings.net!rz.uni-karlsruhe.de!news.rz.uni-karlsruhe.de!not-for-mail From: "Daniel Sch�le" Newsgroups: comp.lang.ada Subject: matrix Date: Tue, 23 Sep 2003 14:05:33 +0200 Organization: University of Karlsruhe, Germany Message-ID: NNTP-Posting-Host: srv-vpn1b-001.rz.uni-karlsruhe.de Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: news.rz.uni-karlsruhe.de 1064319071 15343 172.21.41.1 X-Complaints-To: usenet@rz.uni-karlsruhe.de X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Xref: archiver1.google.com comp.lang.ada:42795 Date: 2003-09-23T14:05:33+02:00 List-Id: Hi all type matrix is array(integer range <>, integer range <>) of integer; .. m: matrix(1..10, 1..5); .. for i in m'first..m'last loop -- 1 to 10 for j in m(i)'first .. m(i)'last loop -- doesnt work put(m(i, j)'image); end loop; end loop; what is the proper way to iterate through the matrix? thanks for answears -- Daniel