0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Julia・Python の導入と実行を概説

Last updated at Posted at 2023-03-26
1 / 15

はじめに

Julia・Python の導入からコーディングの方針までを概説します. 3/26 (日) 学問バー用の資料です.

Julia


Python


Julia を始める

  • Download Julia からダウンロード
  • ② パスを通す
  • ③ ターミナルで Julia を起動する

Julia を書く

  • ① Visual Studio Code
  • ② Jupyter Lab (New) / Notebook (Old)
  • ③ Terminal (macOS) / Command Prompt (Windows)

パスを通して ① を使って下さい.

  • Google Colaboratory (理論上使えるがめんどくさい)

Julia を読む

  • CotEditer (macOS)
  • Atom
  • Emacs / Vim (非推奨)
  • ...

Python を始める

  • Terminal / Command Prompt
  • Anaconda
  • Google Colaboratory
  • Docker

Python を書く

  • ① Visual Studio Code

  • ② Jupyter Lab (New) / Notebook (Old)

  • ③ Terminal (macOS) / Command Prompt (Windows)

  • Google Colaboratory

パスを通して ① を使って下さい.


コーディングの方針

・一般・Julia・Python
・Julia ↔ Python


一般

  • コメントを書かない
    • 意味が分かる変数名・関数名
    • ファイル名は ソート + キーワード + バージョン
    • フォルダ名は 日付 + キーワード
  • コメントを書く
    • 過去の自分は他人
    • テストコードをコメントアウトする

  • 既知の関数を先に定義する
  • 空行とタブで整理する
  • パラメータをタプルの args で渡す
  • 計算が合わなかったら途中を出力する

Julia

  • 組み込み関数を使う
  • ドット記法を使う
  • for を使う
  • 一部 Python を書けるが使わない

Python

  • ライブラリを探す
  • for ではなく array を使う
  • SymPy を使う
  • Plot に使う

Julia ↔ Python

おわりに

Thank you for listening.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?