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

« back to all changes in this revision

Viewing changes to man/utilities/hex2dec.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
hex2dec           Scilab Group           Scilab Function            hex2dec
 
2
NAME
 
3
   hex2dec -   converts hexadecimal representation of integers to numbers
 
4
  
 
5
CALLING SEQUENCE
 
6
 d=hex2dec(h)
 
7
PARAMETERS
 
8
 d    : matrix of  integers
 
9
      
 
10
 h    : matrix of character strings corresponding to hexadecimal
 
11
      representation
 
12
      
 
13
DESCRIPTION
 
14
   hex2dec(x) returns the  matrix of numbers corresponding to the 
 
15
  hexadecimal representation.
 
16
  
 
17
EXAMPLE
 
18
 hex2dec(['ABC','0','A'])
 
19
   
 
20