Julia学习笔记01

Julia上手笔记01

Quick Facts

  • open source and free
  • developed in MIT in the applied computing Group by Jeff Bezanson, Stefan Karpinski and Viral Shah
  • Development started in 2009 and completed in 2012
  • Popularity is increasing in technical, Data science and high performance computing area
  • High level flexible programming language
  • Easy to learn and fast to execute
  • Faster than current programming language(R Python Matlab)

Install Julia

  • Ctrl + L: clear all
  • Ctrl + D: close

Ctrl + C:
workplace()
s + double tab: check all command titled s
shift + ?: show help:
] : show pkg> sign
shift+ backspace: exit package page

using Pkg:
Pkg.add(“Plots”)
IJulia

Shift + enter: show the result and add a newline
Crtl + enter: Execute the code

Boost Jupyter:
create floder/Julia file
my_first_program=“my wonderful world”
movie_name=“avengers”
my_first_program * movie_name = connect together
typeof(my_first_program) = String

猜你喜欢

转载自blog.csdn.net/weixin_43464653/article/details/112984562