~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/elementary/double.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
double            Scilab Group            Scilab Function            double
2
 
NAME
3
 
   double  - conversion from integer to double precision  representation 
4
 
  
5
 
CALLING SEQUENCE
6
 
 y=double(X)
7
 
 y=int16(X)
8
 
 y=int32(X)
9
 
 y=uint8(X)
10
 
 y=uint16(X)
11
 
 y=uint32(X)
12
 
PARAMETERS
13
 
 X    : matrix of floats or integers
14
 
      
15
 
 y    : matrix of floats
16
 
      
17
 
DESCRIPTION
18
 
   converts  data stored using  one, two or four bytes integers into double
19
 
  precision floating point representation. If X entries are already  double
20
 
  precision floats, nothing is done.
21
 
  
22
 
EXAMPLES
23
 
 x=int8([0 12 140])
24
 
 double(x)
25
 
SEE ALSO
26
 
   int8, inttype, type 
27