diff doc/interpreter/expr.txi @ 30327:256fad4ac653

eiminate .+ and .- from documentation * expr.txi, vectorize.txi: Remove documentation for .+ and .- operators. Note that + and - operators always work element by element.
author John W. Eaton <jwe@octave.org>
date Tue, 23 Nov 2021 12:36:52 -0500
parents 2ba4758654ca
children 7ecd07721cca
line wrap: on
line diff
--- a/doc/interpreter/expr.txi	Tue Nov 23 12:36:01 2021 -0500
+++ b/doc/interpreter/expr.txi	Tue Nov 23 12:36:52 2021 -0500
@@ -682,21 +682,15 @@
 @table @asis
 @item @var{x} + @var{y}
 @opindex +
-Addition.  If both operands are matrices, the number of rows and columns
-must both agree, or they must be broadcastable to the same shape.
-
-@item @var{x} .+ @var{y}
-@opindex .+
-Element-by-element addition.  This operator is equivalent to @code{+}.
+Addition (always works element by element).  If both operands are
+matrices, the number of rows and columns must both agree, or they must
+be broadcastable to the same shape.
 
 @item @var{x} - @var{y}
 @opindex -
-Subtraction.  If both operands are matrices, the number of rows and
-columns of both must agree, or they must be broadcastable to the same
-shape.
-
-@item @var{x} .- @var{y}
-Element-by-element subtraction.  This operator is equivalent to @code{-}.
+Subtraction (always works element by element).  If both operands are
+matrices, the number of rows and columns of both must agree, or they
+must be broadcastable to the same shape.
 
 @item @var{x} * @var{y}
 @opindex *