antitheft159 commited on
Commit
a3f073e
·
verified ·
1 Parent(s): e2f2c02

Upload 3d_plot.py

Browse files
Files changed (1) hide show
  1. 3d_plot.py +29 -0
3d_plot.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ """3D Plot
3
+
4
+ Automatically generated by Colab.
5
+
6
+ Original file is located at
7
+ https://colab.research.google.com/drive/13B9FN2GkGeAS6k5lWqBvys-V21P_unbX
8
+ """
9
+
10
+ import matplotlib.pyplot as plt
11
+ import numpy as np
12
+
13
+ # Create data points
14
+ x = np.linspace(-5, 5, 100)
15
+ y = np.linspace(-5, 5, 100)
16
+ X, Y = np.meshgrid(x, y)
17
+ Z = np.sin(np.sqrt(X**2 + Y**2))
18
+
19
+ # Create a 3D plot
20
+ fig = plt.figure()
21
+ ax = fig.add_subplot(111, projection='3d')
22
+ ax.plot_surface(X, Y, Z)
23
+
24
+ ax.set_xlabel('X-axis')
25
+ ax.set_ylabel('Y-axis')
26
+ ax.set_zlabel('Z-axis')
27
+ ax.set_title('WealthNet')
28
+
29
+ plt.show()