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.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,81bb2ce65a3240c3 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.241.162 with SMTP id wj2mr1102910pbc.2.1343418691846; Fri, 27 Jul 2012 12:51:31 -0700 (PDT) Path: c10ni42086pbw.0!nntp.google.com!news1.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Ada novice Newsgroups: comp.lang.ada Subject: Re: What would you like in Ada202X? Date: Fri, 27 Jul 2012 12:49:45 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <569c077e-3703-42de-a98f-dc29774fc3c0@googlegroups.com> <4ffec69a$0$6565$9b4e6d93@newsspool3.arcor-online.net> <5008f8a6$0$9512$9b4e6d93@newsspool1.arcor-online.net> NNTP-Posting-Host: 193.11.21.204 Mime-Version: 1.0 X-Trace: posting.google.com 1343418691 31706 127.0.0.1 (27 Jul 2012 19:51:31 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 27 Jul 2012 19:51:31 +0000 (UTC) In-Reply-To: <5008f8a6$0$9512$9b4e6d93@newsspool1.arcor-online.net> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=193.11.21.204; posting-account=Rr9I-QoAAACS-nOzpA-mGxtAlZ46Nb6I User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-07-27T12:49:45-07:00 List-Id: I would like to see some Ada fft maths functions. The use of fft is rather pervasive in many scientific fields. Yes one can always code the fft function as here: http://rosettacode.org/wiki/Fast_Fourier_transform#Ada but since efficient algorithms exist for fft computation, I believe that the above code is not computationally effective. One can also get an Ada binding to some fft code written in another language as here: http://fftwada.sourceforge.net/ but why not a native fft Ada function in the first place? YC