From 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 11 Aug 2015 16:51:37 -0400 Subject: Repatch (from linux) of OSX IRAF --- math/ieee/chap1/fr2tr.f | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 math/ieee/chap1/fr2tr.f (limited to 'math/ieee/chap1/fr2tr.f') diff --git a/math/ieee/chap1/fr2tr.f b/math/ieee/chap1/fr2tr.f new file mode 100644 index 00000000..24a103ff --- /dev/null +++ b/math/ieee/chap1/fr2tr.f @@ -0,0 +1,15 @@ +c +c----------------------------------------------------------------------- +c subroutine: fr2tr +c radix 2 iteration subroutine +c----------------------------------------------------------------------- +c + subroutine fr2tr(int, b0, b1) + dimension b0(2), b1(2) + do 10 k=1,int + t = b0(k) + b1(k) + b1(k) = b0(k) - b1(k) + b0(k) = t + 10 continue + return + end -- cgit