diff scripts/image/ind2gray.m @ 904:3470f1e25a79

[project @ 1994-11-09 21:22:15 by jwe]
author jwe
date Wed, 09 Nov 1994 21:22:15 +0000
parents 4e826edfbc56
children b843a65fa977
line wrap: on
line diff
--- a/scripts/image/ind2gray.m	Wed Nov 09 20:02:47 1994 +0000
+++ b/scripts/image/ind2gray.m	Wed Nov 09 21:22:15 1994 +0000
@@ -1,14 +1,15 @@
 function Y = ind2gray(X,map)
-#Convert an octave indexed image to a gray scale intensity image.
+
+# Convert an octave indexed image to a gray scale intensity image.
 #
-#Y = ind2gray(X) converts an indexed image to a gray scale intensity
-#image.  The current colormap is used to determine the intensities.
-#The intensity values lie between 0 and 1 inclusive.
+# Y = ind2gray(X) converts an indexed image to a gray scale intensity
+# image.  The current colormap is used to determine the intensities.
+# The intensity values lie between 0 and 1 inclusive.
 #
-#Y = ind2gray(X,map) uses the specified colormap instead of the current
-#one in the conversion process.
+# Y = ind2gray(X,map) uses the specified colormap instead of the current
+# one in the conversion process.
 #
-#SEE ALSO: gray2ind, rgb2ntsc, image, colormap
+# SEE ALSO: gray2ind, rgb2ntsc, image, colormap
 
   if (nargin == 1)
     map = colormap;