changeset 9168:adfeffd89030 octave-forge

image arithmetics extensing @seealso sections
author carandraug
date Sat, 10 Dec 2011 19:53:32 +0000
parents 91c377b6573f
children d382b1f9a2f6
files main/image/inst/imadd.m main/image/inst/imcomplement.m main/image/inst/imdivide.m main/image/inst/immultiply.m main/image/inst/imsubtract.m
diffstat 5 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/main/image/inst/imadd.m	Sat Dec 10 19:50:25 2011 +0000
+++ b/main/image/inst/imadd.m	Sat Dec 10 19:53:32 2011 +0000
@@ -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/main/image/inst/imcomplement.m	Sat Dec 10 19:50:25 2011 +0000
+++ b/main/image/inst/imcomplement.m	Sat Dec 10 19:53:32 2011 +0000
@@ -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/main/image/inst/imdivide.m	Sat Dec 10 19:50:25 2011 +0000
+++ b/main/image/inst/imdivide.m	Sat Dec 10 19:53:32 2011 +0000
@@ -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/main/image/inst/immultiply.m	Sat Dec 10 19:50:25 2011 +0000
+++ b/main/image/inst/immultiply.m	Sat Dec 10 19:53:32 2011 +0000
@@ -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/main/image/inst/imsubtract.m	Sat Dec 10 19:50:25 2011 +0000
+++ b/main/image/inst/imsubtract.m	Sat Dec 10 19:53:32 2011 +0000
@@ -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))