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

« back to all changes in this revision

Viewing changes to man/programming/inttype.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 inttype 1 "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
inttype -  type integers used in integer data types
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
[i]=inttype(x)
 
8
.fi
 
9
.SH PARAMETERS
 
10
.TP 10
 
11
x
 
12
: an matrix of integers (see int8,..)
 
13
.TP 10
 
14
i
 
15
: integer
 
16
.SH DESCRIPTION
 
17
\fVinttype(x)\fR  returns an integer which is the type of the entries
 
18
of \fVx\fR as following :
 
19
.IP 1 
 
20
:  one byte integer representation
 
21
.IP 2 
 
22
:  two bytes integer representation
 
23
.IP 4 
 
24
:  four bytes integer representation
 
25
.IP 11 
 
26
:  one byte unsigned integer representation
 
27
.IP 12 
 
28
:  two bytes unsigned integer representation
 
29
.IP 14 
 
30
:  four bytes unsigned integer representation
 
31
.SH EXAMPLE
 
32
.nf
 
33
x=uint16(1:10);
 
34
inttype(x)
 
35
.fi
 
36
.SH SEE ALSO
 
37
int8
 
38
 
 
39