I draw grid data with the following matlab commands
[x, y] = meshgrid(-10:0.1:10, -10:0.1:10); z = exp(-x.^2 - y.^2); mesh(x, y, z); xlabel('time variable'); ylabel('space variable'); zlabel('wave');
You will see that no matter how you rotate the axes, the x and y marks are always aligned horizontally. Is there a way for it to coincide with the x axis and y axis separately when the axes rotate?
source share