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

« back to all changes in this revision

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