Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Ajuda do Scilab >> API Scilab > legacy > Low level functions > CallOverloadFunction

CallOverloadFunction

a C gateway function uses to call overload function or macro

Syntax

CallOverloadFunction(_iVar)

Arguments

iVar

Specifies which input argument will be used to create the name of overload function/macro

Description

a C gateway function uses to call overload function or macro

Examples

This example returns the size:

  • returns the size of input argument

  • if input argument is a string returns the length

Gateway Source

int callOverload(char *fname,void* pvApiCtx)
{
    CheckRhs(1, 1);
    CheckLhs(0, 1);

    CallOverloadFunction(1);
    return 0;
}

Scilab test script

function x=%c_getSize(a)
    x = length(a);
endfunction

function x=%s_getSize(a)
    x = size(a);
endfunction

a = [1,2,3,4];
a_ref = [2,2];
assert_checkequal(getSize(a) == a_ref);

b = ["May","the","puffin";"be","with","you"];
b_ref = [3,3,6;2,4,3];
assert_checkequal(getSize(b) == b_ref);
Report an issue
<< Boolean sparse writing (Scilab gateway) Low level functions Check variable dimensions (Scilab gateway) >>

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 Feb 14 15:09:57 CET 2017