1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
% SSMULT: sparse matrix multiplication (sparse times sparse)
%
% SSMULT computes C=A*B where A and B are sparse. It is typically faster
% than C=A*B in MATLAB 7.4 (or earlier), and always uses less memory.
%
% ssmult - multiplies two sparse matrices.
% ssmultsym - computes nnz(C), memory, and flops to compute C=A*B; A and B sparse.
%
% Compiling and testing:
% ssmult_install - compiles, installs, and optionally tests ssmult.
% ssmult_test - lengthy test of SSMULT and SSMULTSYM
% sstest - exhaustive performance test for SSMULT.
% sstest2 - exhaustive performance test for SSMULT. Requires ssget.
%
% Example:
% C = ssmult(A,B) ; % computes C = A*B
%
% SSMULT, Copyright (c) 2007-2011, Timothy A Davis. All Rights Reserved.
% SPDX-License-Identifier: GPL-2.0+
|