Seek help in resolving ‘ValueError’
import numpy as np from matplotlib import pyplot as plt from matplotlib.colors import LinearSegmentedColormap X = np.empty([10,150]) Y = np.empty([10,150]) Z = np.empty([10,150]) plt.style.use(‘seaborn-v0_8-poster’) fig = plt.figure(figsize=(12, 12)) ax = plt.axes(projection=’3d’) ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) ax.set_xlabel(‘X Label’, fontsize=14, fontweight=’bold’, labelpad=20) ax.set_ylabel(‘Y Label’, fontsize=14, fontweight=’bold’, labelpad=20) ax.set_zlabel(‘Z Label’, fontsize=14, fontweight=’bold’, labelpad=20) colors = [‘blue’, ‘cyan’, […]