Functions in Julia

4 years ago

As promised in the last article of last week, we'll be taking a proper look at functions in Julia. And…

Loops in Julia

4 years ago

Julia makes only two looping constructs available to you, while and for. In this article, I shall quickly go over…

Conditional Statements in Julia

4 years ago

Now that we've covered looping, we can repeat whatever we do. Thus, today we cover conditionals, so as to be…

Tuples in Julia

4 years ago

Due to functions being chosen via multiple-dispatch, tuples are inextricably linked to functions. Tuples decide which function is to be…

Arrays in Julia

4 years ago

In general, unlike many other technical computing languages, Julia does not expect programs to be written in a vectorized style…

Strings in Julia

4 years ago

Strings might seem like too trivial a topic to dedicate a whole article to. But there are merits todiscussing trivialities,…

Julia DataTypes

4 years ago

In this article, we'll discuss the various datatypes offered by Julia. If you want to read about Julia's introduction and…

Measures of Dispersion

4 years ago

To understand the data well, only studying measures of central tendency is not enough. One essential measure is how the…

Introduction to AWS Lambda Part-1

4 years ago

AWS Lambda is a kind of API end-point that performs a single function and runs when a request is made.…

A Gentle Introduction to Julia

4 years ago

https://julialang.org/benchmarks/ A bit of history 2010 was a weird time to be a programmer, on one hand, you had just…