Difference between revisions of "Octave constants"
From Notes_Wiki
(Created page with "=Octave constantts= {| class="wikitable" border="1" cellspacing="5" cellpadding="10" |- | realmax || Maximum double value that can be represented in octave in double format...") |
m |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Main_Page|Home]] > [[Octave]] > [[Octave constants]] | |||
{| class="wikitable" border="1" cellspacing="5" cellpadding="10" | {| class="wikitable" border="1" cellspacing="5" cellpadding="10" | ||
Line 20: | Line 20: | ||
| | | | ||
|} | |} | ||
[[Main_Page|Home]] > [[Octave]] > [[Octave constants]] |
Latest revision as of 13:22, 7 April 2022
Home > Octave > Octave constants
realmax | Maximum double value that can be represented in octave in double format. | |
realmin | Minimum double value that can be represented in octave in double format. | |
pi | Value of pi as accurate as possibly can be stored in a double variable | |
e | Value of e as accurate as possibly can be stored in a double variable | |
i,I,j,J | All four represent square root of -1, imaginary constant | |
NA | Same as Not Available('NA') data type | |
true | Logical constant representing true values. Numerically it evaluates to 1. | |
false | Logical constant representing false values. Numerically it evaluates to 0. |