view liboctave/cruft/fftpack/zfftb.f @ 17136:f72ffae1fcc3

delaunay.m: Fixed matlab compatibility and input check for single matrix (bug #39644) * scripts/geometry/delaunay.m: check for equal size of X and Y, check for 2 column single matrix input, added 2 tests for these two changes
author Andreas Weber <andreas.weber@hs-offenburg.de>
date Thu, 01 Aug 2013 15:16:14 +0200
parents 648dabbb4c6b
children
line wrap: on
line source

      subroutine zfftb (n,c,wsave)
      implicit double precision (a-h,o-z)
      dimension       c(*)       ,wsave(*)
      if (n .eq. 1) return
      iw1 = n+n+1
      iw2 = iw1+n+n
      call zfftb1 (n,c,wsave,wsave(iw1),wsave(iw2))
      return
      end