1function C = sptranspose (A,conj)                                           %#ok
2%SPTRANSPOSE: compute the transpose, or conjugate-transpose, of a sparse matrix.
3% This function is faster and more memory-efficient than the built-in sparse
4% transpose and ctranspose, at least in versions of MATLAB prior to 7.7 or so,
5% when the MATLAB built-in operator was upgraded by The MathWorks, Inc.
6%
7% Example:
8%       C = sptranspose (A) ;       % computes C = A.'
9%       C = sptranspose (A,1) ;     % computes C = A'
10%
11% See also transpose, ctranspose.
12
13% Copyright 2009, Timothy A. Davis, http://www.suitesparse.com
14
15error ('sptranspose mexFunction not found') ;
16
17