changeset 521:ea4f9b00355e

image arithmetics extensing @seealso sections
author carandraug
date Sat, 10 Dec 2011 19:53:32 +0000
parents 3210b54557be
children 1334711928b6
files inst/imadd.m inst/imcomplement.m inst/imdivide.m inst/immultiply.m inst/imsubtract.m
diffstat 5 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/inst/imadd.m
+++ b/inst/imadd.m
@@ -32,7 +32,7 @@
 ##
 ## @emph{Note 2}: the values are truncated to the maximum value of the output
 ## class.
-## @seealso{imdivide, imsubtract}
+## @seealso{imcomplement, imdivide, immultiply, imsubtract}
 ## @end deftypefn
 
 function img = imadd (img, val, out_class = class (img))
--- a/inst/imcomplement.m
+++ b/inst/imcomplement.m
@@ -21,6 +21,7 @@
 ## For binary images, the complement is computed as @code{!@var{A}}, for floating
 ## point images it is computed as @code{1 - @var{A}}, and for integer images as
 ## @code{intmax(class(@var{A})) - @var{A}}.
+## @seealso{imadd, imdivide, immultiply, imsubtract}
 ## @end deftypefn
 
 function B = imcomplement(A)
--- a/inst/imdivide.m
+++ b/inst/imdivide.m
@@ -28,7 +28,7 @@
 ##
 ## @emph{Note}: the values are truncated to the mininum value of the output
 ## class.
-## @seealso{imadd, imsubtract}
+## @seealso{imadd, imcomplement, immultiply, imsubtract}
 ## @end deftypefn
 
 function img = imdivide (img, val, out_class = class (img))
--- a/inst/immultiply.m
+++ b/inst/immultiply.m
@@ -28,7 +28,7 @@
 ##
 ## @emph{Note}: the values are truncated to the mininum value of the output
 ## class.
-## @seealso{imadd, imsubtract}
+## @seealso{imadd, imcomplement, imdivide, imsubtract}
 ## @end deftypefn
 
 function img = immultiply (img, val, out_class = class (img))
--- a/inst/imsubtract.m
+++ b/inst/imsubtract.m
@@ -32,7 +32,7 @@
 ##
 ## @emph{Note 2}: the values are truncated to the mininum value of the output
 ## class.
-## @seealso{imadd}
+## @seealso{imadd, imcomplement, imdivide, immultiply}
 ## @end deftypefn
 
 function img = imsubtract (img, val, out_class = class (img))