Giter Site home page Giter Site logo

thinkjuliafr.jl's Introduction

ThinkJuliaFR

Build Status

« Think Julia -- Comment penser comme un informaticien » est la traduction française du livre "ThinkJulia -- How to Think Like a Computer scientist" de Ben Lauwens et Allen B. Downey (publié en 2018). Il s'agit d'un livre d'introduction au langage Julia.
La version PDF (format B5, recto-verso) peut être téléchargée en cliquant sur ce lien.
Le code source LYX peut être téléchargé en cliquant sur le bouton download de ce lien.

“Think Julia – Comment penser comme un informaticien” is a French translation of the book “ThinkJulia – How to Think Like a Computer scientist” by Ben Lauwens and Allen B. Downey (published in 2018). It is an introductory book to the Julia language.
The PDF version (B5 format, double-sided) can be downloaded by clicking on this link.
The LYX source code can be downloaded by clicking on the download button of this link.


Installation / Install:
Dans le REPL:
]
add https://github.com/aquarelleX332/ThinkJuliaFR.jl
using ThinkJuliaFR

ou

using Pkg
Pkg.add(url="https://github.com/aquarelleX332/ThinkJuliaFR.jl")


Usages:
Cette version permet d'utiliser les paquets Turtle (Chapitre 4), Plots (chapitres 13 et 19), DBM (chapitres 14 et 19) et Printf (chapitres 16 et 17).

This version allows you to use Turtle, Plots, DBM functions and the "@printf" macro to solve exercises and use the examples from the book.


Exemple:

# exercice 4.12.5 (page 51)

using ThinkJuliaFR
🐢 = Turtle()

function spiralearchimede(t)
    θ = 0.0                     # angle initial
    n = 2500                    # nombre de segments
    len = 2                     # longueur d'un segment
    for i in 1:n
        forward(t,len)
        Δ = 1/(0.002 + 0.001*θ) # incrément d'angle
        turn(t,-Δ)
        θ = θ + Δ
    end
end

@svg begin
    spiralearchimede(🐢)
end

Autres traductions / other translations:
Version espagnole par Pamela Alejandra Bustamante Faúndez.
Version portugaise par Abel Soares Siqueira, Gustavo Sarturi, João Okimoto et Kally Chung.
Coordination des traductions: Christian Peel.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.