الاسمبريد إلكترونيرسالة

Subscribe to our newsletter

# Import the necessary libraries import matplotlib.pyplot as plt from mpl_toolkits import mplot3d x = [1, 2, 3, 4, 5] y = [2, 4, 6, 8, 10] z = [1, 4, 9, 16, 25] fig = plt.figure() ax = plt.axes(projection='3d') ax.scatter3D(x, y, z) plt.show()
بحث هذه المدونة الإلكترونية