2021-02-07 用課題

進捗

課題

TODO

* 自分用メモ

* Matplotlib

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
import numpy as np
import matplotlib.pyplot as plt
from scipy.special import sph_harm

m,l = 3,7
theta = np.linspace(0, np.pi, 1001)
phi = np.linspace(0, 2 * np.pi, 1501)
theta, phi = np.meshgrid(theta, phi)

r = sph_harm(m, l, phi, theta).real
x = np.abs(r) * np.sin(theta) * np.cos(phi)
y = np.abs(r) * np.sin(theta) * np.sin(phi)
z = np.abs(r) * np.cos(theta)

fig = plt.figure(figsize=(8, 8))
ax = fig.gca(projection="3d")
ax.plot_surface(x, y, z, color="aqua", edgecolor="k")
plt.axis("off")
plt.show()

日々の勉強

Julia

IT 基礎知識

復習

本の記述を追いかける

P.336 障害回復管理

P.336 障害の種類

P.336 目標復旧時点

P.336 事前対策

P.337 参考 バックアップの種類

P.337 媒体障害からの回復

P.338 トランザクション障害からの回復

P.339 システム障害からの回復

ログ・バッファの内容
図6.8.10の例