1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
function A = cs_frand (n,nel,s) %#ok
%CS_FRAND generate a random finite-element matrix
% A = cs_frand (n,nel,s) creates an n-by-n sparse matrix consisting of nel
% finite elements, each of which are of size s-by-s with random symmetric
% nonzero pattern, plus the identity matrix.
%
% Example
% A = cs_frand (100, 100, 3) ;
% See also cs_demo.
% CXSparse, Copyright (c) 2006-2022, Timothy A. Davis. All Rights Reserved.
% SPDX-License-Identifier: LGPL-2.1+
error ('cs_frand mexFunction not found') ;
|