/[svn]/doc/docbase/instrument_scripts/nksp/reference/functions/nksp_sh_left_function.html
ViewVC logotype

Annotation of /doc/docbase/instrument_scripts/nksp/reference/functions/nksp_sh_left_function.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3196 - (hide annotations) (download) (as text)
Sat May 20 14:27:01 2017 UTC (6 years, 11 months ago) by schoenebeck
File MIME type: text/html
File size: 1728 byte(s)
- Fixed copy pasted typo all over the entire docbase.

1 schoenebeck 2966 <html>
2     <head>
3     <meta name="author" content="Christian Schoenebeck">
4     <title>sh_left() function</title>
5     <meta name="description" content="Calculates a left bit shifted value.">
6     </head>
7     <body>
8     <h1>sh_left()</h1>
9     <p>
10     Calculates left bit shifted values.
11     The original value of the 1st argument is bit shifted to the left as
12     many times as requested by the 2nd argument and the result of this
13     bit shift operation is returned by this function.
14     </p>
15    
16     <h3>Function Prototype</h3>
17     <p/>
18     <code lang="nksp">
19     sh_left(??number??, ??shifts??)
20     </code>
21    
22     <h3>Arguments</h3>
23     <table>
24     <tr>
25     <th>Argument Name</th> <th>Data Type</th> <th>Description</th>
26     </tr>
27     <tr>
28     <td><code>??number??</code></td>
29     <td>Integer Number</td>
30     <td>Original input value to be shifted.<br>
31     [required]</td>
32     </tr>
33     <tr>
34     <td><code>??shifts??</code></td>
35     <td>Integer Number</td>
36     <td>Amount of times the original value should be shifted to the left.<br>
37     [required]</td>
38     </tr>
39     </table>
40    
41     <h3>Return Value</h3>
42     <table>
43     <tr>
44     <th>Description</th> <th>Data Type</th>
45     </tr>
46     <tr>
47     <td>Bit shifted result.</td>
48     <td>Integer Number</td>
49     </tr>
50     </table>
51    
52     <h3>Examples</h3>
53     <p/>
54     <code>
55     on init
56     message("sh_left(1,0) = " & sh_left(1,0))
57     message("sh_left(1,1) = " & sh_left(1,1))
58     message("sh_left(1,2) = " & sh_left(1,2))
59     message("sh_left(1,3) = " & sh_left(1,3))
60     message("sh_left(1,4) = " & sh_left(1,4))
61     end on
62     </code>
63    
64 schoenebeck 3196 <h3>Availability</h3>
65 schoenebeck 2966 <p>Since LinuxSampler 2.0.0.svn22.<p>
66    
67     </body>
68     </html>

  ViewVC Help
Powered by ViewVC