# HG changeset patch # User John W. Eaton # Date 1264682608 18000 # Node ID f3c1fd990f3f786474b6edeacf88d1bb7c2c18d4 # Parent 60d382fd0063d8dfafd2ce94120bf586fb8ffafe note some deprecated functions are still in Matlab, so don't remove with other functions deprecated in 3.0.0 diff --git a/doc/interpreter/obsolete.txi b/doc/interpreter/obsolete.txi --- a/doc/interpreter/obsolete.txi +++ b/doc/interpreter/obsolete.txi @@ -53,7 +53,6 @@ @item @code{chisquare_pdf} @tab @code{chi2pdf} @tab 3.4.0 @item @code{chisquare_rnd} @tab @code{chi2rnd} @tab 3.4.0 @item @code{clearplot} @tab @code{clf} @tab 3.4.0 -@item @code{clg} @tab @code{clf} @tab 3.4.0 @item @code{com2str} @tab @code{num2str} @tab 3.4.0 @item @code{exponential_cdf} @tab @code{expcdf} @tab 3.4.0 @item @code{exponential_inv} @tab @code{expinv} @tab 3.4.0 @@ -86,7 +85,6 @@ @item @code{is_struct} @tab @code{isstruct} @tab 3.4.0 @item @code{is_symmetric} @tab @code{issymmetric} @tab 3.4.0 @item @code{is_vector} @tab @code{isvector} @tab 3.4.0 -@item @code{isstr} @tab @code{ischar} @tab 3.4.0 @item @code{lognormal_cdf} @tab @code{logncdf} @tab 3.4.0 @item @code{lognormal_inv} @tab @code{logninv} @tab 3.4.0 @item @code{lognormal_pdf} @tab @code{lognpdf} @tab 3.4.0 @@ -105,7 +103,6 @@ @item @code{poisson_pdf} @tab @code{poisspdf} @tab 3.4.0 @item @code{poisson_rnd} @tab @code{poissrnd} @tab 3.4.0 @item @code{polyinteg} @tab @code{polyint} @tab 3.4.0 -@item @code{setstr} @tab @code{char} @tab 3.4.0 @item @code{struct_contains} @tab @code{isfield} @tab 3.4.0 @item @code{struct_elements} @tab @code{fieldnames} @tab 3.4.0 @item @code{t_cdf} @tab @code{tcdf} @tab 3.4.0 diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,9 @@ +2010-01-28 John W. Eaton + + * deprecated/isstr.m, deprecated/clg.m, deprecated/setstr.m: + Note that Matlab still has these functions, so they probabl + should not be removed with other functions deprecated in 3.0.0. + 2010-01-27 Thorsten Meyer * plot/gnuplot_drawnow.m: Add "emf" to the list of enhanced diff --git a/scripts/deprecated/clg.m b/scripts/deprecated/clg.m --- a/scripts/deprecated/clg.m +++ b/scripts/deprecated/clg.m @@ -24,6 +24,7 @@ ## Author: jwe ## Deprecated in version 3.0 +## Matlab still has this function, so don't remove just yet. function clg () diff --git a/scripts/deprecated/isstr.m b/scripts/deprecated/isstr.m --- a/scripts/deprecated/isstr.m +++ b/scripts/deprecated/isstr.m @@ -24,6 +24,7 @@ ## Author: jwe ## Deprecated in version 3.0 +## Matlab still has this function, so don't remove just yet. function retval = isstr (varargin) diff --git a/scripts/deprecated/setstr.m b/scripts/deprecated/setstr.m --- a/scripts/deprecated/setstr.m +++ b/scripts/deprecated/setstr.m @@ -24,6 +24,7 @@ ## Author: jwe ## Deprecated in version 3.0 +## Matlab still has this function, so don't remove just yet. function retval = setstr (varargin)