Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Optimization and Simulation > Optimization base > optimbase_log

optimbase_log

Prints the given message.

Syntax

opt = optimbase_log(opt, msg)

Argument

opt

The object of TOPTIM type (tlist).

msg

A string. The message to print.

Description

The optimbase_log function prints the given message in the console, if verbose logging is enabled. If verbose logging is disabled, does nothing. If the -logfile option has been set, writes the message into the file instead of writing to the console. If the console is too slow, writing into a file can be a solution, since it is very fast.

Example

opt = optimbase_new ();
opt = optimbase_configure(opt, "-verbose", 1);
optimbase_log ( opt , "My message" );
opt = optimbase_destroy(opt);

// Writes the message into the file
opt = optimbase_new ();
opt = optimbase_configure(opt, "-verbose", 1);
opt = optimbase_configure(opt,"-logfile",fullfile(TMPDIR,"mylogfile.txt"));
myFile = optimbase_cget(opt,"-logfile")
optimbase_log ( opt , "My message" );
opt = optimbase_destroy(opt)

fd = mopen( fullfile(TMPDIR,"mylogfile.txt") , "r" );
mgetl ( fd , 2 )

See also

Report an issue
<< optimbase_isinnonlincons Optimization base optimbase_new >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Feb 14 15:02:14 CET 2019