Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerlya02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:8e80217e59
[formerly3360eb6c5f
] Former-commit-id:377dcd10b9
19 lines
392 B
Python
Executable file
19 lines
392 B
Python
Executable file
import matplotlib as mpl
|
|
from mpl_toolkits.mplot3d import Axes3D
|
|
import numpy as np
|
|
import matplotlib.pyplot as plt
|
|
|
|
mpl.rcParams['legend.fontsize'] = 10
|
|
|
|
fig = plt.figure()
|
|
ax = Axes3D(fig)
|
|
theta = np.linspace(-4 * np.pi, 4 * np.pi, 100)
|
|
z = np.linspace(-2, 2, 100)
|
|
r = z**2 + 1
|
|
x = r * np.sin(theta)
|
|
y = r * np.cos(theta)
|
|
ax.plot(x, y, z, label='parametric curve')
|
|
ax.legend()
|
|
|
|
plt.show()
|
|
|