1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2008 - INRIA - Michael Baudin
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
//
// optimbase_display --
// Display the current settings in the console.
//
function this = optimbase_display ( this )
mprintf("Optimization Object\n");
mprintf("Number of variables : %s\n", string(this.numberofvariables));
x0 = optimbase_cget (this,"-x0")
mprintf("Initial Guess : [%s]\n" , _strvec(x0) );
mprintf("Initial Function Value :%s\n",_strvec(this.fx0));
mprintf("Number of Inequality Constraints :%d\n",this.nbineqconst);
mprintf("Bounds Mininimum : [%s]\n", _strvec(this.boundsmin));
mprintf("Bounds Maxinimum :[%s]\n", _strvec(this.boundsmax));
mprintf("Optimum Parameters : [%s]\n" , _strvec(this.xopt));
mprintf("Optimum Function Value :%e\n",this.fopt);
mprintf("Number of iterations : %d\n", this.iterations);
mprintf("Maximum number of iterations : %s\n", string(this.maxiter));
mprintf("Number function evaluations : %d\n", this.funevals);
mprintf("Maximum number of function evaluations : %s\n", string(this.maxfunevals));
mprintf("Termination Method on function value : %s\n", string(this.tolfunmethod));
mprintf("Termination Absolute Tolerance on function value : %s\n", string(this.tolfunabsolute));
mprintf("Termination Relative Tolerance on function value : %s\n", string(this.tolfunrelative));
mprintf("Termination Method on x : %s\n", string(this.tolxmethod));
mprintf("Termination Absolute Tolerance on x : %s\n", string(this.tolxabsolute));
mprintf("Termination Relative Tolerance on x : %s\n", string(this.tolxrelative));
mprintf("Optimization Status : %s\n", this.status);
mprintf("Verbose logging : %s\n", string(this.verbose));
mprintf("Verbose Termination : %s\n", string(this.verbosetermination));
mprintf("Verbose Log File : %s\n", this.logfile );
mprintf("Verbose Log File Startup Up: %s\n", string(this.logstartup) );
mprintf("Store History : %s\n", string(this.storehistory));
endfunction
//
// _strvec --
// Returns a string for the given vector.
//
function str = _strvec ( x )
str = strcat(string(x)," ")
endfunction
|