diff options
| author | bnewbold <bnewbold@robocracy.org> | 2009-11-19 16:55:51 +0000 |
|---|---|---|
| committer | User <bnewbold@daemon.robocracy.org> | 2009-11-19 16:55:51 +0000 |
| commit | bd5bc5020c43d9a69d8df39d6a96107af49d3d24 (patch) | |
| tree | 3cbf8a5c3e6b2c9967d78936b7146c80559dc6e2 | |
| parent | 3f55a36ab83ff4275ec48063d6a178f70b2b73d9 (diff) | |
| download | knowledge-bd5bc5020c43d9a69d8df39d6a96107af49d3d24.tar.gz knowledge-bd5bc5020c43d9a69d8df39d6a96107af49d3d24.zip | |
scientific notation in idl
| -rw-r--r-- | software/idl.page | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/software/idl.page b/software/idl.page index 1a46faa..b684d37 100644 --- a/software/idl.page +++ b/software/idl.page @@ -46,4 +46,6 @@ http://star.pst.qub.ac.uk/help/idl.shtml) Basic Constructors -------------------- -BINDGEN, CINDGEN, DCINDGEN, DINDGEN, FINDGEN, L64INDGEN, LINDGEN, UINDGEN, UL64INDGEN, and ULINDGEN create arrays of increasing values, similar to range() in python; the prefix characters indicate the data type (B = byte, C = complex integer, etc).
\ No newline at end of file +BINDGEN, CINDGEN, DCINDGEN, DINDGEN, FINDGEN, L64INDGEN, LINDGEN, UINDGEN, UL64INDGEN, and ULINDGEN create arrays of increasing values, similar to range() in python; the prefix characters indicate the data type (B = byte, C = complex integer, etc). + +The exponent notation ``5.67e3`` creates a floating point number, while ``5.67d3`` creates a double length float.
\ No newline at end of file |
