You can still change it using the view function, although not interactively.
Problem rotating surf plots
1 次查看(过去 30 天)
显示 更早的评论
The following produces our favorite surf plot
[X,Y,Z] = peaks(25);
surf(X,Y,Z);
I can rotate the figure with the rotate3D mouse function. Then, when I add EITHER
set(gca, 'XLim',[0 4])
OR
set(gca, 'XScale', 'log')
everything still rotates fine. But when I add BOTH lines to the code, the figure can no longer be rotated. Any ideas?
0 个评论
回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!