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

« back to all changes in this revision

Viewing changes to man/programming/stacksize.man

  • 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
.TH stacksize 1 "October 1995" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
stacksize - set scilab stack size 
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
stacksize(n)
 
8
sz=stacksize()
 
9
.fi
 
10
.SH PARAMETERS
 
11
.TP 10
 
12
n
 
13
: integer, the required stack size given in number of double precision
 
14
words
 
15
.TP
 
16
sz
 
17
: 2-vector [total used] 
 
18
.SH DESCRIPTION
 
19
Scilab stores all variables in a unique stack
 
20
\fVstk\fR. 
 
21
 
 
22
\fVstacksize(n)\fR allows the user to increase or decrease the size of
 
23
this stack. The maximum allowed size depends on the amount of
 
24
free memory and swap space available at the time.
 
25
 
 
26
This function with the \fVn\fR argument may only be called at the main
 
27
prompt; it cannot be called within a scilab function. 
 
28
 
 
29
\fVsz=stacksize()\fR returns a 2-vector which contains  the current
 
30
total and used stack size. It can be used everywhere.
 
31
.SH SEE ALSO
 
32
who