forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Stefan Karpinski edited this page Jul 26, 2011
·
89 revisions
_
_ _ _(_)_ |
(_) | (_) (_) | A fresh approach to technical computing
_ _ _| |_ __ _ |
| | | | | | |/ _` | | http://julialang.org
| | |_| | | | (_| | | julia-math@googlegroups.com
_/ |\__'_|_|_|\__'_| |
|__/ |
This is the official documentation for the Julia programming language. It is generally intended to be read in the order below, but can for the most part be sensibly read out of order. The manual is not complete yet, but the sections that do exist should give a fair idea of the possibilities of the Julia language.
## Contents- Introduction
- Getting Started
- Major Differences from Matlab
-
Numeric Primitives and Literals
- [Integer Literals](Numeric Primitives and Literals#Integer-Literals)
- [Floating Point Literals](Numeric Primitives and Literals#Floating-Point-Literals)
- [Numeric Literal Coefficients](Numeric Primitives and Literals#Numeric-Literal-Coefficients)
- [Syntax Conflicts](Numeric Primitives and Literals#Syntax-Conflicts)
-
Mathematical Operations
- [Arithmetic and Bitwise Operators](Mathematical Operations#Arithmetic-and-Bitwise-Operators)
- [Numeric Comparisons](Mathematical Operations#Numeric-Comparisons)
- [Mathematical Functions](Mathematical Operations#Mathematical-Functions)
-
Complex and Rational Numbers
- [Complex Numbers](Complex and Rational Numbers#Complex-Numbers)
- [Rational Numbers](Complex and Rational Numbers#Rational-Numbers)
- Strings
- Functions
-
Control Flow
- [Compound Expressions](Control Flow#Compound-Expressions)
- [Conditional Evaluation](Control Flow#Conditional-Evaluation)
- [Short-Circuit Evaluation](Control Flow#Short-Circuit-Evaluation)
- [Repeated Evaluation: Loops](Control Flow#Repeated-Evaluation-Loops)
- [Exception Handling](Control Flow#Exception-Handling)
- [Tasks (aka Coroutines)](Control Flow#Tasks-aka-Coroutines-)
- Variables and Scoping
- Types
- Methods
- Constructors
- Conversion and Promotion
- Arrays
-
Running External Programs
- [Interpolation](Running External Programs#Interpolation)
- [Quoting](Running External Programs#Quoting)
- [Pipelines](Running External Programs#Pipelines)
-
Parallel Computing
- [Parallel map and loops](Parallel Computing#Parallel-map-and-loops)
- [Distributed arrays](Parallel Computing#Distributed-arrays)
- [Adding processors](Parallel Computing#Adding-processors)
- [Working with RemoteRef and GlobalObject](Parallel Computing#Working-with-RemoteRef-and-GlobalObject)
- Metaprogramming
- Calling C Code
- Standard Library Reference
- Homepage: http://julialang.org
- Source code: https://github.com/JuliaLang/julia
- Documentation: https://github.com/JuliaLang/julia/wiki
- Discussion: julia-math@googlegroups.com
Next: Introduction