0% developed

Introducing Julia: Difference between revisions

From Wikibooks, open books for an open world
Jump to navigation Jump to search
[checked revision][checked revision]
Content deleted Content added
→‎Introduction: updated manning link
Line 13: Line 13:
* [https://www.packtpub.com/application-development/mastering-julia/?utm_source=PGwikibooks.org&utm_medium=pod&utm_campaign=1783553316 Mastering Julia, Malcolm Sherrington, Packt Publishing]
* [https://www.packtpub.com/application-development/mastering-julia/?utm_source=PGwikibooks.org&utm_medium=pod&utm_campaign=1783553316 Mastering Julia, Malcolm Sherrington, Packt Publishing]


* [https://www.manning.com/books/learn-julia Learn Julia, Chris von Csefalvay, Manning Publications]
* [https://www.manning.com/books/julia-in-action Julia in Action, Chris von Csefalvay, Manning Publications]


* (in preparation) [http://blog.leahhanson.us/pages/about.html Learning Julia, Leah Hanson, O'Reilly Publishing]
* (in preparation) [http://blog.leahhanson.us/pages/about.html Learning Julia, Leah Hanson, O'Reilly Publishing]

Revision as of 07:08, 27 April 2016

Previous page
Introducing Julia Next page
Getting started
Contents

Introduction

Julia is a recent arrival to the world of programming languages, and tutorials and introductory texts are now starting to appear.

The official Julia documentation is pretty good (although it needs more examples!), but it's aimed primarily at the early adopters, developers, and more experienced programmers. Once you've learned the basics of the language, you should refer to it as often as possible.

In addition to the many introductory videos and online Julia blog posts and notebooks, you can purchase (or order) the following Julia tutorials:

This wikibook (which predates all these publications) is less of a tutorial, and more a collection of notes and examples to help you while you're learning Julia.

The Julia community has established a good ethos of encouraging participation in the development of the language on github. The advantage of this wikibook is that it's made and edited by the Julia community – you can edit anything at any time. If you find something that's wrong, or unclear, feel free to correct it, or add examples. (Your first few edits are reviewed, just in case you have less than good intentions. And, as with the Wikipedia, you should expect your writing to be edited by others!) The focus should be largely on the new user, rather than the computer science expert.

This wikibook has recently been updated to work with the current (as of November 2015) version of Julia, version 0.4.

Outline

Getting started
some introductory words, installation, paths, and various bits of magic
The REPL
Using the REPL; Julia as a calculator; getting help
Arrays and tuples
Storing data – Arrays and tuples; the core of Julia and scientific programming
Types
a quick introduction to types, the way to organize your code and the secret to making your programs fast
Controlling the flow
loops and decisions; ifs and elses
Functions
functions and methods; multiple dispatch
Dictionaries and sets
storing data in dictionaries and sets
Strings and characters
working with strings
Working with text files
reading data from text files; elementary file processing
Working with dates and times
working with date and time functions
Plotting
Plotting; an introduction to some of the plotting packages
Metaprogramming
metaprogramming, expressions and macros
Modules and packages
how Julia code is organized, and should be developed
DataFrames
data frames; organizing data in tables