comparison scripts/sparse/sprand.m @ 19007:9ac2357f19bc

doc: Replace "non-zero" with "nonzero" to match existing usage. Replace all occurrences in both documentation and code comments. * doc/interpreter/contrib.txi, doc/interpreter/diagperm.txi, doc/interpreter/external.txi, doc/interpreter/sparse.txi, doc/interpreter/stmt.txi, doc/interpreter/testfun.txi, doc/refcard/refcard.tex, examples/mysparse.c, libinterp/corefcn/balance.cc, libinterp/corefcn/cellfun.cc, libinterp/corefcn/data.cc, libinterp/corefcn/filter.cc, libinterp/corefcn/find.cc, libinterp/corefcn/kron.cc, libinterp/corefcn/ls-mat5.cc, libinterp/corefcn/luinc.cc, libinterp/corefcn/mappers.cc, libinterp/corefcn/oct-fstrm.cc, libinterp/corefcn/oct-fstrm.h, libinterp/corefcn/oct-iostrm.cc, libinterp/corefcn/oct-iostrm.h, libinterp/corefcn/oct-stdstrm.h, libinterp/corefcn/oct-strstrm.h, libinterp/corefcn/spparms.cc, libinterp/corefcn/toplev.cc, libinterp/corefcn/utils.cc, libinterp/dldfcn/symrcm.cc, libinterp/octave-value/ov-bool-mat.cc, liboctave/array/CSparse.cc, liboctave/array/Sparse.cc, liboctave/array/Sparse.h, liboctave/array/dSparse.cc, liboctave/numeric/randmtzig.c, liboctave/operators/Sparse-op-defs.h, scripts/help/get_first_help_sentence.m, scripts/miscellaneous/edit.m, scripts/plot/draw/pie.m, scripts/plot/draw/pie3.m, scripts/sparse/colperm.m, scripts/sparse/nonzeros.m, scripts/sparse/spdiags.m, scripts/sparse/spfun.m, scripts/sparse/spones.m, scripts/sparse/sprand.m, scripts/sparse/sprandn.m, scripts/sparse/sprandsym.m, scripts/sparse/spstats.m, scripts/sparse/svds.m, scripts/special-matrix/gallery.m, scripts/statistics/base/moment.m, scripts/statistics/tests/cor_test.m: Replace "non-zero" with "nonzero" to match existing usage.
author Rik <rik@octave.org>
date Sun, 08 Jun 2014 17:59:59 -0700
parents c53e11fab75f
children 0e1f5a750d00
comparison
equal deleted inserted replaced
19006:c53e11fab75f 19007:9ac2357f19bc
28 ## The size of the matrix is @var{m}x@var{n} with a density of values @var{d}. 28 ## The size of the matrix is @var{m}x@var{n} with a density of values @var{d}.
29 ## @var{d} must be between 0 and 1. Values will be uniformly distributed on 29 ## @var{d} must be between 0 and 1. Values will be uniformly distributed on
30 ## the interval (0, 1). 30 ## the interval (0, 1).
31 ## 31 ##
32 ## If called with a single matrix argument, a sparse matrix is generated with 32 ## If called with a single matrix argument, a sparse matrix is generated with
33 ## random values wherever the matrix @var{s} is non-zero. 33 ## random values wherever the matrix @var{s} is nonzero.
34 ## 34 ##
35 ## If called with a scalar fourth argument @var{rc}, a random sparse matrix 35 ## If called with a scalar fourth argument @var{rc}, a random sparse matrix
36 ## with reciprocal condition number @var{rc} is generated. If @var{rc} is 36 ## with reciprocal condition number @var{rc} is generated. If @var{rc} is
37 ## a vector, then it specifies the first singular values of the generated 37 ## a vector, then it specifies the first singular values of the generated
38 ## matrix (@code{length (@var{rc}) <= min (@var{m}, @var{n})}). 38 ## matrix (@code{length (@var{rc}) <= min (@var{m}, @var{n})}).