This post is about how to install Julia and run source code files in Windows. Once we install it, we need to configure it a bit to make the Julia executable file available in command-line windows. Download And Install Julia
Install And Use Julia Plugin for IntelliJ IDEA
Julia has a plugin for IntelliJ IDEA that we can install and use instead of Atom with Juno. The plugin may not be full-featured but good enough for as a starter IDE. Requirements We used the following items for this
Find Standard Deviation In Julia
Although there is the Statistics.std function, this post shows how to find the Standard Deviation in Julia using custom codes. What is Standard Deviation? The Standard Deviation is a value that shows how much the values deviate from their mean.
How To Create Array Literals In Julia
This post is about how to create array literals in Julia. When we write out array values, we create array literals. Julia can readily interpret these array literals. There are other ways to create arrays in Julia, but we will
Define And Use Functions In Julia
This post is about how to define and use functions in Julia. A function is a block of codes that performs a specific operation. It may accept parameters which may influence its behavior. It may also return values to codes