~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/functions/argn.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
argn             Scilab Group             Scilab Function              argn
 
2
NAME
 
3
   argn - number of arguments in a function call
 
4
  
 
5
CALLING SEQUENCE
 
6
 [lhs [,rhs] ]=argn()
 
7
 lhs=argn(1)
 
8
 rhs=argn(2)
 
9
DESCRIPTION
 
10
   This function is used inside a function definition. It gives the number
 
11
  of actual inputs rhs and output lhs parameters passed to the function
 
12
  when the function is  called. It is usually used in function definitions
 
13
  to deal with  optional arguments.
 
14
  
 
15
SEE ALSO
 
16
   function, varargin
 
17