Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.1 - Français

Change language to:
English - 日本語 - 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

Aide de Scilab >> Fonctions avancées > Built-in & external > intppty

intppty

set interface argument passing properties

Syntax

funs=intppty()
intppty(fun)
intppty(fun, action)

Arguments

fun

string, module name (see getmodules)

action

string, action to realize, value should be "add" or "remove"

funs

string vector, vector of module names (see getmodules)

Description

The interface programs may be written in 2 different ways for the mode of function argument passing.

In the first and default way, the arguments are passed by value. With the following syntax:

foo(A,1+2)

the argument associated with A will be passed by value (a copy of A is made before foo is called), and the argument associated with 1+2 will be passed by value.

In the second way arguments may be passed be reference if there are "named arguments" (no copy of the variable value is done). With the following syntax:

foo(A,1+2)

the argument associated with A will be passed by reference, and the argument associated with 1+2 will be passed by value.

Warning: declaring that the interface with number fun can handle arguments passed by reference if it is not the case should produce unpredictable results.

intppty(fun, "remove") suppress this property for the interface fun.

intppty() returns the vector of interfaces which handle arguments passed by reference.

This function may be useful for dynamically loaded interface (see addinter).

See also

  • getmodules — returns list of modules installed in Scilab
  • addinter — new functions interface dynamic link at run time.
Report an issue
<< funptr Built-in & external newfun >>

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:
Mon Feb 12 19:15:45 CET 2018