Reference
Last updated on 2026-01-27 | Edit this page
Glossary
- body
- The section of a function or loop that contains the statements to be executed.
- comma separated values
- A simple file format where each value is separated by a comma, often used for storing tabular data.
- empty string
-
A string that contains no characters, written as
""in Julia. - for loop
- A control flow structure used to repeat a block of code for each element in a collection.
- heat map
- A graphical representation of data where values are shown using colors, often used to visualize matrices or grids.
- immutable
- A type of object in Julia whose contents cannot be changed after it is created.
- mutable
- A type of object in Julia whose contents can be changed after it is created.
- slice
- A subset of an array or collection, selected by specifying a range of indices.