Disable warnings by warning type in GNU Octave:
See the list of warnings and their warning names in the section: '12 .2.2 Enabling and Disabling Alerts. http://www.gnu.org/software/octave/doc/interpreter/Enabling-and-Disabling-Warnings.html
Place this command in your octave program until a warning appears:
warning('off', 'Octave:possible-matlab-short-circuit-operator');
Get more information about alert identifiers
After you are in the octave console, use this command so that the octave tells you about alert identifiers.
help warning_ids
Some warnings complete the process and cannot be suppressed; they must be fixed:
Like this:
warning: function /home/el/octave/multicore-0.2.15/gethostname.m shadows a built-in function
To fix this, rename / home / el / octave / multicore -0.2.15 / gethostname.m to / home / el / octave / multicore-0.2.15 / gethostname_backup.m. And the warning goes away. This is a software bug where two files have the same name, so the program does not know which one to use.
Eric Leschinski
source share