No BSD License  

Highlights from
Iterative Methods for Linear and Nonlinear Equations

image thumbnail
u=isintv(z)
function u=isintv(z)
% inverse sine transform, assume that size(z)=[nx,ny]=[2^k-1,ny]
% 
% C. T. Kelley, May 1994
%
% This code comes with no guarantee or warranty of any kind.
%
[nx,ny]=size(z);
ww=ifft([zeros(ny,1), z']',2*nx+2);
u=imag(ww(2:nx+1,:));

Contact us at files@mathworks.com