changeset 29826:a48151f59b69

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Mon, 28 Jun 2021 10:36:25 +0200
parents 7917b91a3c58 (current diff) 290eff7148bb (diff)
children 004e63a7a501
files libinterp/corefcn/data.cc libinterp/corefcn/sub2ind.cc
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);
--- 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)