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


checkNamedArguments

Return list of unexpected named arguments

Syntax

names = checkNamedArguments()

Arguments

names

a vector of string with names of variables

Description

Returns names of named variables passed to current function but that are not in the function prototype.

Examples

function foo(a, b)
    x = checkNamedArguments();
    disp("Named Variable:", x);
endfunction

//No additional named variable
foo(1);
foo(1, 2);
foo(a = 1, b = 2);
foo(b = 2, a = 2);

//With additional named variables
foo(a = 1, c = 2);
foo(c = 2, b = 2);

See also

  • who — 変数の一覧
Report an issue
<< Predefined variables Variables clear >>

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:
Tue Mar 07 09:28:39 CET 2023