JetBrains_学習ノート_003_科学計算モード
4074 ワード
Python IDE PyCharmの科学計算モードについて
起動後のレイアウト
Jupyter notebookのような「セル」で実行する方法
ドキュメントはコーディングの際に動的に変わる(英語なので、翻訳プラグインを用意する)
sci_mode.py
import numpy as np
import matplotlib.pyplot as plt
#%% test1
N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = np.pi * (15 * np.random.rand(N) ** 2)
plt.scatter(x, y, c=colors, alpha=0.5)
plt.show()
#%% test2
print(2**2)
Jupyter notebookのような「セル」で実行する方法
ドキュメントはコーディングの際に動的に変わる(英語なので、翻訳プラグインを用意する)
sci_mode.py
import numpy as np
import matplotlib.pyplot as plt
#%% test1
N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = np.pi * (15 * np.random.rand(N) ** 2)
plt.scatter(x, y, c=colors, alpha=0.5)
plt.show()
#%% test2
print(2**2)
sci_mode.py
import numpy as np
import matplotlib.pyplot as plt
#%% test1
N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = np.pi * (15 * np.random.rand(N) ** 2)
plt.scatter(x, y, c=colors, alpha=0.5)
plt.show()
#%% test2
print(2**2)
Author And Source
この問題について(JetBrains_学習ノート_003_科学計算モード), 我々は、より多くの情報をここで見つけました https://qiita.com/dmkd3006/items/f01122fe2655f4017bf6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .