changeset 900:bd94f5c8280b octave-forge

Remove 'interface subject to change' message
author etienne
date Mon, 05 May 2003 08:00:10 +0000
parents 369895f71c56
children 590a479168e1
files main/optim/d2_min.m main/optim/minimize.m main/optim/nelder_mead_min.m
diffstat 3 files changed, 3 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/main/optim/d2_min.m	Sun May 04 23:58:47 2003 +0000
+++ b/main/optim/d2_min.m	Mon May 05 08:00:10 2003 +0000
@@ -33,13 +33,14 @@
 ##     or matrix : argument.
 ##
 ## ctl  : vector : Control arguments (see below)
+##      or struct
 ##
 ## code : string : code will be evaluated after each outer loop that
 ##                 produced some (any) improvement. Variables visible from
 ##                 "code" include "x", the best parameter found, "v" the
 ##                 best value and "args", the list of all arguments. All can
-##                 be modified. This option can be used to change the 
-##                 parameterization of the argument space while optimizing.
+##                 be modified. This option can be used to re-parameterize 
+##                 the argument space during optimization
 ##
 ## CONTROL VARIABLE ctl : (optional). May be a struct or a vector of length
 ## ---------------------- 5 or less where NaNs are ignored. Default values
@@ -83,11 +84,6 @@
 ## Author : Etienne Grossmann <etienne@isr.ist.utl.pt>
 ##
 
-static d2_min_warn = 1;
-if d2_min_warn, warning("d2_min interface subject to change."); endif
-d2_min_warn = 0;
-
-
 maxout = inf;
 maxinner = 30 ;
 
--- a/main/optim/minimize.m	Sun May 04 23:58:47 2003 +0000
+++ b/main/optim/minimize.m	Mon May 05 08:00:10 2003 +0000
@@ -114,11 +114,6 @@
 ##
 function [x,v,nev,varargout] = minimize (f,args,varargin)
 
-static minimize_warn = 1;
-if minimize_warn
-  warning ("minimize() interface subject to change.");
-endif
-minimize_warn = 0;
 
 # ####################################################################
 # Read the options ###################################################
--- a/main/optim/nelder_mead_min.m	Sun May 04 23:58:47 2003 +0000
+++ b/main/optim/nelder_mead_min.m	Mon May 05 08:00:10 2003 +0000
@@ -85,11 +85,6 @@
 ## Author : Etienne Grossmann <etienne@isr.ist.utl.pt>
 ## This software is distributed under the terms of the GPL
 
-static nelder_mead_min_warn = 1;
-if nelder_mead_min_warn
-  warning("nelder_mead_min interface subject to change.");
-endif
-nelder_mead_min_warn = 0;
 
 verbose = 0;