changeset 2621:6ec6a7b429b7 octave-forge

more indexing fixes
author adb014
date Sat, 07 Oct 2006 19:34:01 +0000
parents b2e5f719fa0b
children a3c31d71e1c7
files main/INDEX main/image/INDEX main/miscellaneous/inst/grep.m
diffstat 3 files changed, 24 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/main/INDEX	Sat Oct 07 19:02:50 2006 +0000
+++ b/main/INDEX	Sat Oct 07 19:34:01 2006 +0000
@@ -1115,11 +1115,9 @@
  qp
  glpkmex
 
-extra >> Extra packages
+finance >> Finance
 Finance
  fv fvl irr nper npv pmt pv pvl rate vol
-Server
- listen send senderror
 
 statistics >> Statistics
 Depreciated
@@ -1338,3 +1336,23 @@
  kalman=use <f>lqe</f>
  kalmd=use <f>dlqe</f> or <f>dkalman</f>
 
+image >> Image processing
+Display
+ image
+ imagesc
+ imshow
+Read/write
+ loadimage saveimage
+Colour controls
+ hsv2rgb
+ ntsc2rgb
+ rgb2hsv
+ rgb2ntsc
+Representation
+ gray2ind
+ ind2gray
+ ind2rgb
+ rgb2ind
+Colour maps
+ gray
+ ocean
--- a/main/image/INDEX	Sat Oct 07 19:02:50 2006 +0000
+++ b/main/image/INDEX	Sat Oct 07 19:34:01 2006 +0000
@@ -8,7 +8,7 @@
  imwrite 
  imfinfo
  imginfo
- loadimage saveimage bmpwrite jpgread jpgwrite pngread pngwrite
+ bmpwrite jpgread jpgwrite pngread pngwrite
 Reshape
  imcrop 
  imresize 
@@ -57,10 +57,6 @@
  cmpermute 
  cmunique 
  imapprox 
- hsv2rgb 
- ntsc2rgb 
- rgb2hsv 
- rgb2ntsc 
  rgb2ycbcr 
  ycbcr2rgb 
 Representation
@@ -78,8 +74,6 @@
  rgb2gray 
  rgb2ind 
 Colour maps
- gray 
- ocean
  hsv rainbow
  hot 
  bone 
--- a/main/miscellaneous/inst/grep.m	Sat Oct 07 19:02:50 2006 +0000
+++ b/main/miscellaneous/inst/grep.m	Sat Oct 07 19:34:01 2006 +0000
@@ -1,5 +1,5 @@
-##       y = grep(x) ==  x(find(x))
-##   [y,f] =         == [x(find(x)),find(x)]
+##   y = grep(x) = x(find(x))
+##   [y,f] = [x(find(x)),find(x)]
 ##
 ## This function is just to save typing and improve readability, as in
 ##