comparison scripts/image/cmunique.m @ 21546:f7f97d7e9294

doc: Wrap m-file docstrings to 79 characters + newline (80 total). * isrecording.m, soundsc.m, delaunay3.m, cell2mat.m, cumtrapz.m, del2.m, inputParser.m, interp1.m, interp3.m, narginchk.m, profile.m, validateattributes.m, delaunayn.m, tsearchn.m, voronoin.m, brighten.m, cmunique.m, colorcube.m, imfinfo.m, imshow.m, edit.m, orderfields.m, run.m, warning_ids.m, ode23.m, ode45.m, odeget.m, integrate_adaptive.m, kahan.m, ode_struct_value_check.m, runge_kutta_23.m, fminunc.m, fsolve.m, fzero.m, pkg.m, build.m, specular.m, view.m, bar.m, barh.m, contour3.m, isosurface.m, line.m, pie.m, pie3.m, quiver3.m, scatter.m, scatter3.m, stem3.m, stemleaf.m, surfl.m, tetramesh.m, isfigure.m, mkpp.m, pchip.m, residue.m, splinefit.m, rmpref.m, unique.m, eigs.m, ilu.m, factor.m, factorial.m, gallery.m, hankel.m, histc.m, ols.m, finv.m, fpdf.m, kruskal_wallis_test.m, weekday.m: Wrap m-file docstrings to 79 characters + newline (80 total).
author Rik <rik@octave.org>
date Sun, 27 Mar 2016 15:50:01 -0700
parents 516bb87ea72e
children bac0d6f07a3e
comparison
equal deleted inserted replaced
21545:a81c9a0a05e3 21546:f7f97d7e9294
28 ## output is a colormap @var{newmap} from which any repeated rows have been 28 ## output is a colormap @var{newmap} from which any repeated rows have been
29 ## eliminated. The output image, @var{Y}, is the original input image with 29 ## eliminated. The output image, @var{Y}, is the original input image with
30 ## the indices adjusted to match the new, possibly smaller, colormap. 30 ## the indices adjusted to match the new, possibly smaller, colormap.
31 ## 31 ##
32 ## When the input is an RGB image (an @nospell{MxNx3} array), the output 32 ## When the input is an RGB image (an @nospell{MxNx3} array), the output
33 ## colormap will contain one entry for every unique color in the original image. 33 ## colormap will contain one entry for every unique color in the original
34 ## In the worst case the new map could have as many rows as the number of 34 ## image. In the worst case the new map could have as many rows as the
35 ## pixels in the original image. 35 ## number of pixels in the original image.
36 ## 36 ##
37 ## When the input is a grayscale image @var{I}, the output colormap will 37 ## When the input is a grayscale image @var{I}, the output colormap will
38 ## contain one entry for every unique intensity value in the original image. 38 ## contain one entry for every unique intensity value in the original image.
39 ## In the worst case the new map could have as many rows as the number of 39 ## In the worst case the new map could have as many rows as the number of
40 ## pixels in the original image. 40 ## pixels in the original image.