November 2017
Beginner
316 pages
6h 40m
English
This one is used to denote the Float type; in other words, integers with decimals. We use the Float64 type here. Notice that from now on, I will be using the 64-bit type for all my examples and code, as I will be working on a 64-bit machine:
julia> typeof(1.10)Float64julia> typemax(Float64)Infjulia> typemin(Float64)-Inf
Here, Inf denotes infinity, which is Julia's unique way to denote the value infinity.
Read now
Unlock full access