User`s guide
B Error and Warning Messages
B-14
Warning: File:
filename
Line: # Column: # The call to function "
functionname
" on this line
passed
quantity1
inputs and the function is declared with
quantity2
. A run-time error will occur
if this code is executed. (too_many_inputs) There is an inconsistencybetween the
number of formal and actual inpu ts to the function.
Warning: File:
filename
Line: # Column: # The call to function "
functionname
" on this line
requested
quantity1
outputs and the function is declared with
quantity2
. A run-time error will
occur if this code is executed.
(too_many_outputs) There is an inconsistency
between the number of formal and act ual outputs for the function.
Warning: File:
filename
Line: # Column: # The clear function cannot process the "
optionname
"
argument in compiled code.
(clear_cannot_ handle_flag) You cannot use clear
variables
, clear mex, clear functions,orclear all in compiled M-code.
Warning: File:
filename
Line: # Column: # The clear statement did not specifically list the names
of variables to be cleared as constant strings. A run-time error will be reported if this code is
executed.
(clear_non_const ant_st ring s) Useoneoftheformsoftheclear
command that contains the names of the variables to be cleared. Use clear
name
or clear('name');donotuseclear(name).
Warning: File:
filename
Line: # Column: # The Compiler does not support the
optionname
option to save. This option is ignored.
(save_option_ignored) You cannot use
-ascii, -double,or-tabs with the save commandincompiledM-code.
Warning: File:
filename
Line: # Column: # The filename provided to load (save) was a cell array
or structure index that could possibly expand into a comma separated list. An error will occur
at run-time if a comma list is present for the filename.
(load_save_filename) The
Compiler needs to know statically the number of variables that are involved in
a
load or save. If a cell array is involved, the Compiler cannot make that
determination, and the generated code may behave differently from MATLAB.
Warning: File:
filename
Line: # Column: # The "
functionname
" function is only available in
MEX mode. A run-time error will occur if this code is executed in stand-alone mode.
(using_mex_only_function) This warning is produced if you call any built-in
function thatisonlyavailable in
mex mode.Itisonlygeneratedwhenproducing
the main or lib wrapper and not during normal compilation, unless specifically
enabled.