Code covered by the BSD License  

Highlights from
slatec

from slatec by Ben Barrowes
The slatec library converted into matlab functions.

[n,sa,cx,incx]=csscal(n,sa,cx,incx);
function [n,sa,cx,incx]=csscal(n,sa,cx,incx);
%***BEGIN PROLOGUE  CSSCAL
%***PURPOSE  Scale a complex vector.
%***LIBRARY   SLATEC (BLAS)
%***CATEGORY  D1A6
%***TYPE      COMPLEX (CSSCAL-C)
%***KEYWORDS  BLAS, LINEAR ALGEBRA, SCALE, VECTOR
%***AUTHOR  Lawson, C. L., (JPL)
%           Hanson, R. J., (SNLA)
%           Kincaid, D. R., (U. of Texas)
%           Krogh, F. T., (JPL)
%***DESCRIPTION
%
%                B L A S  Subprogram
%    Description of Parameters
%
%     --Input--
%        N  number of elements in input vector(s)
%       SA  single precision scale factor
%       CX  complex vector with N elements
%     INCX  storage spacing between elements of CX
%
%     --Output--
%       CX  scaled result (unchanged if N .LE. 0)
%
%     Replace complex CX by (single precision SA) * (complex CX)
%     For I = 0 to N-1, replace CX(IX+I*INCX) with  SA * CX(IX+I*INCX),
%     where IX = 1 if INCX .GE. 0, else IX = 1+(1-N)*INCX.
%
%***REFERENCES  C. L. Lawson, R. J. Hanson, D. R. Kincaid and F. T.
%                 Krogh, Basic linear algebra subprograms for Fortran
%                 usage, Algorithm No. 539, Transactions on Mathematical
%                 Software 5, 3 (September 1979), pp. 308-323.
%***ROUTINES CALLED  (NONE)
%***REVISION HISTORY  (YYMMDD)
%   791001  DATE WRITTEN
%   890831  Modified array declarations.  (WRB)
%   890831  REVISION DATE from Version 3.2
%   891214  Prologue converted to Version 4.0 format.  (BAB)
%   900821  Modified to correct problem with a negative increment.
%           (WRB)
%   920501  Reformatted the REFERENCES section.  (WRB)
%***end PROLOGUE  CSSCAL
persistent i ix ; 

cx_shape=size(cx);cx=reshape(cx,1,[]);
if isempty(i), i=0; end;
if isempty(ix), ix=0; end;
%***FIRST EXECUTABLE STATEMENT  CSSCAL
if( n<=0 )
cx_shape=zeros(cx_shape);cx_shape(:)=cx(1:numel(cx_shape));cx=cx_shape;
return;
end;
%
if( incx==1 )
%
%     Code for increment equal to 1.
%
for i = 1 : n;
cx(i) = sa.*cx(i);
end; i = fix(n+1);
else;
%
%     Code for increment not equal to 1.
%
ix = 1;
if( incx<0 )
ix =fix((-n+1).*incx + 1);
end;
for i = 1 : n;
cx(ix) = sa.*cx(ix);
ix = fix(ix + incx);
end; i = fix(n+1);
cx_shape=zeros(cx_shape);cx_shape(:)=cx(1:numel(cx_shape));cx=cx_shape;
return;
end;
cx_shape=zeros(cx_shape);cx_shape(:)=cx(1:numel(cx_shape));cx=cx_shape;
end
%DECK CSVDC

Contact us at files@mathworks.com