# HG changeset patch # User Markus Mützel # Date 1624869385 -7200 # Node ID a48151f59b691602eb711a50874e84eea558217a # Parent 7917b91a3c58f96088cdb09f6904ecd6eef6ff94# Parent 290eff7148bba360c9330ea29f21ce29ccc84bc9 maint: Merge stable to default. diff -r 7917b91a3c58 -r a48151f59b69 libinterp/corefcn/data.cc --- a/libinterp/corefcn/data.cc Fri Apr 30 20:43:30 2021 +0200 +++ b/libinterp/corefcn/data.cc Mon Jun 28 10:36:25 2021 +0200 @@ -6350,6 +6350,9 @@ Return the matrix right division of @var{x} and @var{y}. This function and @w{@tcode{@var{x} / @var{y}}} are equivalent. + +If the system is not square, or if the coefficient matrix is singular, a +minimum norm solution is computed. @seealso{mldivide, rdivide, plus, minus} @end deftypefn */) { @@ -6374,7 +6377,10 @@ Return the matrix left division of @var{x} and @var{y}. This function and @w{@tcode{@var{x} @backslashchar{} @var{y}}} are equivalent. -@seealso{mrdivide, ldivide, rdivide} + +If the system is not square, or if the coefficient matrix is singular, a +minimum norm solution is computed. +@seealso{mrdivide, ldivide, rdivide, linsolve} @end deftypefn */) { return binary_op_defun_body (octave_value::op_ldiv, args); diff -r 7917b91a3c58 -r a48151f59b69 libinterp/corefcn/sub2ind.cc --- a/libinterp/corefcn/sub2ind.cc Fri Apr 30 20:43:30 2021 +0200 +++ b/libinterp/corefcn/sub2ind.cc Mon Jun 28 10:36:25 2021 +0200 @@ -255,7 +255,7 @@ @result{} r = 2 8 @end group @end example -@seealso{ind2sub, size} +@seealso{sub2ind, size} @end deftypefn */) { if (args.length () != 2)