Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.0 - 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 > varargout

varargout

arbitrarily long list of output arguments

Description

A function whose output argument list ends with varargout may be called with more output arguments than indicated in the output argument list. The Left-Hand-Side output arguments passed at calling time from the varargout keyword onwards are extracted out of the varargout list defined in the function.

varargout = function ex() may be called with any number of output arguments. Within function ex output arguments may be stored in varargout(i).

[X1,...,Xn,varargout] = function ex() may also be used. In this case the Xi variables must be assigned in the function as well as varargout(i).

argn(1) returns the actual total number of output arguments.

varargout is by default initialized to list().

Examples

function varargout=exampl()
    varargout = list(1,2,3,4)
endfunction

x = exampl()
[x, y]    = exampl()
[x, y, z] = exampl()

function [a, b, varargout]=exampl1()
    a = 'first'
    b = 'second'
    varargout = list(1,2,3,4)
endfunction

exampl1()
[a, b]  = exampl1()
[a,b,c] = exampl1()

See also

  • argn — nombre effectif d'arguments d'entrée reçus / attendus en sortie d'une fonction
  • function — définition d'une fonction Scilab
  • list — Objet Scilab, Définition d'une liste
  • varargin — variable number of arguments in an input argument list

History

VersionDescription
6.0.0 varargout is now initialized to list() by default.
Report an issue
<< varargin Fonctions avancées whereis >>

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 25 08:50:45 CET 2020