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=0.4 required=5.0 tests=BAYES_00,FORGED_MUA_MOZILLA autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,1ce0ce3b2db00698 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.219.170 with SMTP id pp10mr17230078pbc.1.1340726003030; Tue, 26 Jun 2012 08:53:23 -0700 (PDT) Path: l9ni22478pbj.0!nntp.google.com!news2.google.com!goblin1!goblin.stu.neva.ru!fdn.fr!feeder1-2.proxad.net!proxad.net!feeder2-2.proxad.net!newsfeed.arcor.de!newsspool3.arcor-online.net!news.arcor.de.POSTED!not-for-mail Date: Tue, 26 Jun 2012 17:53:20 +0200 From: Georg Bauhaus User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: how to print an array range? References: <4fe9bf33$0$6566$9b4e6d93@newsspool4.arcor-online.net> In-Reply-To: Message-ID: <4fe9daf1$0$6556$9b4e6d93@newsspool4.arcor-online.net> Organization: Arcor NNTP-Posting-Date: 26 Jun 2012 17:53:21 CEST NNTP-Posting-Host: 341eb983.newsspool4.arcor-online.net X-Trace: DXC=JgXeTo9KXWK0YVY]kmLTlD4IUKJLh>_cHTX3jMn;?AIQP_P\G X-Complaints-To: usenet-abuse@arcor.de Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Date: 2012-06-26T17:53:21+02:00 List-Id: On 26.06.12 16:24, Nasser M. Abbasi wrote: > But I wanted to see the range of > the first dimension of the Matrix A below. (1..3, 1..3) Specify the ranges you want, for example, A : constant Real_Matrix (1 .. 3, 1 .. 3) := (( 1.0, 2.0, 3.0), ( 4.0, 5.0, 6.0), ( 7.0, 8.0, 9.0)); or B : constant Real_Matrix := (1 => ( 1.0, 2.0, 3.0), 2 => ( 4.0, 5.0, 6.0), 3 => ( 7.0, 8.0, 9.0));