CONSTDEF: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 11: | Line 11: | ||
<code>@c0@ CONSTDEF c_0 = 299792458 {"m" over "s"}</code> defines the speed of light in a vacuum. | <code>@c0@ CONSTDEF c_0 = 299792458 {"m" over "s"}</code> defines the speed of light in a vacuum. | ||
|4= | |4= | ||
[[EQDEF]] | [[EQDEF]] [[EXDEF]] | ||
}} | }} | ||
[[Category:Definition]] | [[Category:Definition]] |
Latest revision as of 19:04, 27 June 2017
Syntax
@label@ { options } CONSTDEF [*] expression
Implemented in iMath since version 2.2.0 or earlier.
Explanation
Define a constant. The expression most be of the form symbol = expression
, and it must evaluate to a quantity.
The starred form will suppress printing of the result.
Constants are not erased by CLEAREQUATIONS
. This makes it possible to specify general constants only once in the file and reuse them for several different calculations.
Example
@c0@ CONSTDEF c_0 = 299792458 {"m" over "s"}
defines the speed of light in a vacuum.