added: Danish language to the setup
changed: version of the program: 0.8.4 git-svn-id: svn://ttmath.org/publicrep/ttcalc/trunk@140 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -102,7 +102,7 @@
|
||||
<li><a href="other_functions.html">factorial(x)</a></li>
|
||||
<li><a href="other_functions.html">abs(x)</a></li>
|
||||
<li><a href="other_functions.html">sgn(x)</a></li>
|
||||
<li><a href="other_functions.html">mod(x,y)</a></li>
|
||||
<li><a href="other_functions.html">mod(x; y)</a></li>
|
||||
<li><a href="other_functions.html">max(x1; x2; ...)</a></li>
|
||||
<li><a href="other_functions.html">min(x1; x2; ...)</a></li>
|
||||
<li><a href="other_functions.html">sum(x1; x2; ...)</a></li>
|
||||
|
@@ -28,17 +28,17 @@ We don't define the BitNot() function too.
|
||||
|
||||
<dl>
|
||||
|
||||
<dt>BitAnd(x ; y) or band(x ; y)</dt>
|
||||
<dt>bitand(x ; y) or band(x ; y)</dt>
|
||||
<dd>Bitwise AND. For example:<br>
|
||||
bitand(6; 2) = bitand(&110 ; &10) = &10 = 2<br>
|
||||
bitand(6.5; 2.5) = bitand(&110.1 ; &10.1) = &10.1 = 2.5</dd>
|
||||
|
||||
<dt>BitOr(x ; y) or bor(x ; y)</dt>
|
||||
<dt>bitor(x ; y) or bor(x ; y)</dt>
|
||||
<dd>Bitwise OR. For example:<br>
|
||||
bitor(6; 1) = bitor(&110 ; &1) = &111 = 7<br>
|
||||
bitor(6.5; 1.5) = bitor(&110.1 ; &1.1) = &111.1 = 7.5</dd>
|
||||
|
||||
<dt>BitXor(x ; y) or bxor(x ; y)</dt>
|
||||
<dt>bitxor(x ; y) or bxor(x ; y)</dt>
|
||||
<dd>Bitwise XOR. For example:<br>
|
||||
bitxor(6; 3) = bitxor(&110 ; &11) = &101 = 5<br>
|
||||
bitxor(6.5; 3.5) = bitxor(&110.1 ; &11.1) = &101.0 = 5</dd>
|
||||
|
@@ -21,11 +21,11 @@
|
||||
<h1>TTCalc</h1>
|
||||
|
||||
<p>
|
||||
TTCalc is an open source mathematical calculator. It features arithmetical
|
||||
functions, trigonometric functions, inverse trigonometric functions,
|
||||
hyperbolic functions, inverse hyperbolic functions, logical operators,
|
||||
logarithms, functions for converting between degrees and radians and
|
||||
so on. Additionally the program allows a user to define his own
|
||||
TTCalc is an open source bignum mathematical calculator. It features
|
||||
arithmetical functions, trigonometric functions, inverse trigonometric
|
||||
functions, hyperbolic functions, inverse hyperbolic functions, logical
|
||||
operators, logarithms, functions for converting between degrees and radians
|
||||
and so on. Additionally the program allows a user to define his own
|
||||
variables and functions.
|
||||
</p>
|
||||
|
||||
@@ -41,13 +41,13 @@ display values with the base (radix) from two to sixteen.
|
||||
|
||||
<table>
|
||||
<tr><td>Author:</td><td>Tomasz Sowa</td></tr>
|
||||
<tr><td>Contact:</td><td>t.sowa@slimaczek.pl</td></tr>
|
||||
<tr><td>Contact:</td><td>t.sowa@ttmath.org</td></tr>
|
||||
<tr><td>Licence:</td><td>BSD (open source)</td></tr>
|
||||
<tr><td>Interface:</td><td>English, Polish, Spanish, Danish</td></tr>
|
||||
<tr><td>Project page:</td><td><a href="http://ttcalc.sourceforge.net/">http://ttcalc.sourceforge.net/</a></td></tr>
|
||||
<tr><td>Bignum library:</td><td>TTMath <a href="http://ttmath.org/">http://ttmath.org/</a></td></tr>
|
||||
<tr><td>Operating systems:</td><td>Microsoft Windows 9x/Me/NT/2000/XP/Vista</td></tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@@ -53,7 +53,7 @@ sgn(-10)=-1<br>
|
||||
sgn(0)=0<br>
|
||||
sgn(5)=1</dd>
|
||||
|
||||
<dt>mod(x,y)</dt>
|
||||
<dt>mod(x ; y)</dt>
|
||||
<dd>Mod returns the remainder from the division x by y<br>mod(10; 2.2)=1.2 because 10=2.2*4 + 1.2</dd>
|
||||
|
||||
|
||||
|
@@ -61,7 +61,7 @@ Unary minus, e.g.: -2</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<p>Of course you can use the parentheses ( and ). Look at the <a href="operators_priority.html">operators priority</a> as well.</p>
|
||||
<p>Of course you can use parentheses ( and ). Look at <a href="operators_priority.html">operators priority</a> as well.</p>
|
||||
|
||||
<h1>Built-in variables</h1>
|
||||
|
||||
|
Reference in New Issue
Block a user