comparison scripts/image/rgb2hsv.m @ 10791:3140cb7a05a1

Add spellchecker scripts for Octave and run spellcheck of documentation interpreter/doccheck: New directory for spelling/grammar scripts. interpreter/doccheck/README: Instructions for using scripts. interpreter/doccheck/spellcheck: Script to spellcheck a Texinfo file. interpreter/doccheck/aspell.conf: GNU Aspell configuration file for Octave documentation. interpreter/doccheck/aspell-octave.en.pws: Private Aspell dictionary. interpreter/doccheck/add_to_aspell_dict: Script to add new Octave-specific words to private Aspell dictionary. interpreter/octave.texi: New @nospell macro which forces Aspell to ignore the word marked by the macro. interpreter/mk_doc_cache.m: Skip new @nospell macro when building doc_cache.
author Rik <octave@nomad.inbox5.com>
date Sat, 17 Jul 2010 19:53:01 -0700
parents eb63fbe60fab
children c776f063fefe
comparison
equal deleted inserted replaced
10790:01f1643dfbb1 10791:3140cb7a05a1
17 ## along with Octave; see the file COPYING. If not, see 17 ## along with Octave; see the file COPYING. If not, see
18 ## <http://www.gnu.org/licenses/>. 18 ## <http://www.gnu.org/licenses/>.
19 19
20 ## -*- texinfo -*- 20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} {@var{hsv_map} =} rgb2hsv (@var{rgb_map}) 21 ## @deftypefn {Function File} {@var{hsv_map} =} rgb2hsv (@var{rgb_map})
22 ## Transform a colormap or image from the rgb space to the hsv space. 22 ## Transform a colormap or image from the RGB space to the HSV space.
23 ## 23 ##
24 ## A color n the RGB space consists of the red, green and blue intensities. 24 ## A color in the RGB space consists of the red, green and blue intensities.
25 ## 25 ##
26 ## In the HSV space each color is represented by their hue, saturation 26 ## In the HSV space each color is represented by their hue, saturation
27 ## and value (brightness). Value gives the amount of light in the color. 27 ## and value (brightness). Value gives the amount of light in the color.
28 ## Hue describes the dominant wavelength. 28 ## Hue describes the dominant wavelength.
29 ## Saturation is the amount of Hue mixed into the color. 29 ## Saturation is the amount of hue mixed into the color.
30 ## @seealso{hsv2rgb} 30 ## @seealso{hsv2rgb}
31 ## @end deftypefn 31 ## @end deftypefn
32 32
33 ## Author: Kai Habel <kai.habel@gmx.de> 33 ## Author: Kai Habel <kai.habel@gmx.de>
34 ## Adapted-by: jwe 34 ## Adapted-by: jwe