finsh chapter 16

This commit is contained in:
Joseph Hopfmüller
2022-10-22 10:17:41 +02:00
parent b555b45d1b
commit c5b5f2ef40
3 changed files with 144 additions and 1 deletions

8
test.py Normal file
View File

@@ -0,0 +1,8 @@
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
v = np.array([[0.1, 0.2, 0.3, -0.4, -0.1], [0.03, -0.1, 0.6, -0.4, 0.25]], dtype=np.float128)
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')