diff scripts/image/image.m @ 11109:41d18f6342f9

remove image_viewer function
author John W. Eaton <jwe@octave.org>
date Mon, 18 Oct 2010 14:15:06 -0400
parents 2adf4736dafa
children 9a08fa5b33bd
line wrap: on
line diff
--- a/scripts/image/image.m	Mon Oct 18 16:53:57 2010 +0200
+++ b/scripts/image/image.m	Mon Oct 18 14:15:06 2010 -0400
@@ -24,11 +24,6 @@
 ## into the current colormap, and the colormap will be scaled so that the
 ## extremes of @var{x} are mapped to the extremes of the colormap.
 ##
-## It first tries to use @code{gnuplot}, then @code{display} from 
-## @code{ImageMagick}, then @code{xv}, and then @code{xloadimage}.
-## The actual program used can be changed using the @code{image_viewer}
-## function.
-##
 ## The axis values corresponding to the matrix elements are specified in
 ## @var{x} and @var{y}.  If you're not using gnuplot 4.2 or later, these
 ## variables are ignored.
@@ -37,11 +32,11 @@
 ## upper left.  For ordinary plots, the origin is located in the lower
 ## left.  Octave handles this inversion by plotting the data normally,
 ## and then reversing the direction of the y-axis by setting the
-## @code{ydir} property to "reverse".  This has implications whenever
+## @code{ydir} property to @code{"reverse"}.  This has implications whenever
 ## an image and an ordinary plot need to be overlaid.  The recommended
 ## solution is to display the image and then plot the reversed ydata
 ## using, for example, @code{flipud (ydata,1)}.
-## @seealso{imshow, imagesc, colormap, image_viewer}
+## @seealso{imshow, imagesc, colormap}
 ## @end deftypefn
 
 ## Author: Tony Richardson <arichard@stark.cc.oh.us>