function [n,wsave]=sinti(n,wsave);
persistent dt fk k kf ks np1 ns2 pi ;
if isempty(dt), dt=0; end;
if isempty(fk), fk=0; end;
if isempty(pi), pi=0; end;
if isempty(k), k=0; end;
if isempty(kf), kf=0; end;
if isempty(ks), ks=0; end;
if isempty(np1), np1=0; end;
if isempty(ns2), ns2=0; end;
%***BEGIN PROLOGUE SINTI
%***PURPOSE Initialize a work array for SINT.
%***LIBRARY SLATEC (FFTPACK)
%***CATEGORY J1A3
%***TYPE SINGLE PRECISION (SINTI-S)
%***KEYWORDS FFTPACK, FOURIER TRANSFORM
%***AUTHOR Swarztrauber, P. N., (NCAR)
%***DESCRIPTION
%
% subroutine SINTI initializes the array WSAVE which is used in
% subroutine SINT. The prime factorization of N together with
% a tabulation of the trigonometric functions are computed and
% stored in WSAVE.
%
% Input Parameter
%
% N the length of the sequence to be transformed. The method
% is most efficient when N+1 is a product of small primes.
%
% Output Parameter
%
% WSAVE a work array with at least INT(3.5*N+16) locations.
% Different WSAVE arrays are required for different values
% of N. The contents of WSAVE must not be changed between
% calls of SINT.
%
%***REFERENCES P. N. Swarztrauber, Vectorizing the FFTs, in Parallel
% Computations (G. Rodrigue, ed.), Academic Press,
% 1982, pp. 51-83.
%***ROUTINES CALLED RFFTI
%***REVISION HISTORY (YYMMDD)
% 790601 DATE WRITTEN
% 830401 Modified to use SLATEC library source file format.
% 860115 Modified by Ron Boisvert to adhere to Fortran 77 by
% (a) changing dummy array size declarations (1) to (*),
% (b) changing references to intrinsic function FLOAT
% to REAL, and
% (c) changing definition of variable PI by using
% FORTRAN intrinsic function ATAN instead of a DATA
% statement.
% 881128 Modified by Dick Valent to meet prologue standards.
% 890531 Changed all specific intrinsics to generic. (WRB)
% 890531 REVISION DATE from Version 3.2
% 891214 Prologue converted to Version 4.0 format. (BAB)
% 920501 Reformatted the REFERENCES section. (WRB)
%***end PROLOGUE SINTI
wsave_shape=size(wsave);wsave=reshape(wsave,1,[]);
%***FIRST EXECUTABLE STATEMENT SINTI
if( n<=1 )
wsave_shape=zeros(wsave_shape);wsave_shape(:)=wsave(1:numel(wsave_shape));wsave=wsave_shape;
return;
end;
pi = 4..*atan(1.);
np1 = fix(n + 1);
ns2 = fix(fix(n./2));
dt = pi./np1;
ks = fix(n + 2);
kf = fix(ks + ns2 - 1);
fk = 0.;
for k = ks : kf;
fk = fk + 1.;
wsave(k) = 2..*sin(fk.*dt);
end; k = fix(kf+1);
[np1,wsave(sub2ind(size(wsave),max(kf+1,1)):end)]=rffti(np1,wsave(sub2ind(size(wsave),max(kf+1,1)):end));
wsave_shape=zeros(wsave_shape);wsave_shape(:)=wsave(1:numel(wsave_shape));wsave=wsave_shape;
end
%DECK SINTRP