comparison scripts/linear-algebra/isbanded.m @ 18904:9addb5ad9426

bandwidth.m: Add new function. * NEWS: Announce new function. * scripts/linear-algebra/module.mk: New function added to the build system. * scripts/help/__unimplemented__.m: New function removed from unimplemented. * scripts/linear-algebra/isbanded.m: New function added as documentation reference. * scripts/linear-algebra/isdiag.m: New function added as documentation reference. * scripts/linear-algebra/istril.m: New function added as documentation reference. * scripts/linear-algebra/istriu.m: New function added as documentation reference. * scripts/linear-algebra/bandwidth.m: New function. * linalg.txi: Add bandwidth function to manual.
author Massimiliano Fasi <massimiliano.fasi@gmail.com>
date Tue, 08 Jul 2014 12:19:37 +0200
parents 49961d67e4b9
children d0d0858cfab1
comparison
equal deleted inserted replaced
18903:93805f9256a9 18904:9addb5ad9426
21 ## Return true if @var{x} is a matrix with entries confined between 21 ## Return true if @var{x} is a matrix with entries confined between
22 ## @var{lower} diagonals below the main diagonal and @var{upper} diagonals 22 ## @var{lower} diagonals below the main diagonal and @var{upper} diagonals
23 ## above the main diagonal. 23 ## above the main diagonal.
24 ## 24 ##
25 ## @var{lower} and @var{upper} must be non-negative integers. 25 ## @var{lower} and @var{upper} must be non-negative integers.
26 ## @seealso{isdiag, istril, istriu} 26 ## @seealso{isdiag, istril, istriu, bandwidth}
27 ## @end deftypefn 27 ## @end deftypefn
28 28
29 ## Author: Massimiliano Fasi 29 ## Author: Massimiliano Fasi
30 30
31 function retval = isbanded (A, lower, upper) 31 function retval = isbanded (A, lower, upper)