# HG changeset patch # User David Bateman # Date 1208194240 14400 # Node ID 9a6012d7cbb7c882a9bc77989f06a8b4ca57274b # Parent fa41af73280150004a9801edd0ed39e88727c023 Minor texinfo errors diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,9 @@ +2008-04-14 David Bateman + + * plot/rose.m: Add missing comment mark that causes issues with + octave-forge function referencing. + * deprecated/lchol.m, deprecated/splchol.m: Fix texinfo errors. + 2008-04-09 John W. Eaton * deprecated/beta_cdf.m, deprecated/beta_inv.m, diff --git a/scripts/deprecated/lchol.m b/scripts/deprecated/lchol.m --- a/scripts/deprecated/lchol.m +++ b/scripts/deprecated/lchol.m @@ -19,7 +19,8 @@ ## -*- texinfo -*- ## @deftypefn {Loadable Function} {@var{l} =} lchol (@var{a}) ## @deftypefnx {Loadable Function} {[@var{l}, @var{p}] =} lchol (@var{a}) -## This function has been deprecated. Use @code{chol (@dots,'lower')} instead. +## This function has been deprecated. Use @code{chol (@dots{},'lower')} +## instead. ## @end deftypefn ## Deprecated in version 3.1 diff --git a/scripts/deprecated/splchol.m b/scripts/deprecated/splchol.m --- a/scripts/deprecated/splchol.m +++ b/scripts/deprecated/splchol.m @@ -20,7 +20,8 @@ ## @deftypefn {Loadable Function} {@var{l} =} splchol (@var{a}) ## @deftypefnx {Loadable Function} {[@var{l}, @var{p}] =} splchol (@var{a}) ## @deftypefnx {Loadable Function} {[@var{l}, @var{p}, @var{q}] =} splchol (@var{a}) -## This function has been deprecated. Use @code{chol (@dots,'lower')} instead. +## This function has been deprecated. Use @code{chol (@dots{},'lower')} +## instead. ## @end deftypefn ## Deprecated in version 3.1 diff --git a/scripts/plot/rose.m b/scripts/plot/rose.m --- a/scripts/plot/rose.m +++ b/scripts/plot/rose.m @@ -19,8 +19,8 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {} rose (@var{th}, @var{r}) ## @deftypefnx {Function File} {} rose (@var{h}, @dots{}) -## @deftypefnx {Function File} {@var{h} =} compass (@dots{}) -## @deftypefnx {Function File} {[@var{r}, @var{th}] =} compass (@dots{}) +## @deftypefnx {Function File} {@var{h} =} rose (@dots{}) +## @deftypefnx {Function File} {[@var{r}, @var{th}] =} rose (@dots{}) ## ## Plot an angular histogram. With one vector argument @var{th}, plots the ## histogram with 20 angular bins. If @var{th} is a matrix, then each column @@ -36,7 +36,7 @@ ## If two output arguments are requested, then rather than plotting the ## histogram, the polar vectors necessary to plot the histogram are ## returned. -# +## ## @example ## [r, t] = rose ([2*randn(1e5,1), pi + 2 * randn(1e5,1)]); ## polar (r, t);