is it a bug?

3 vues (au cours des 30 derniers jours)
G A
G A le 17 Juil 2019
Modifié(e) : G A le 17 Juil 2019
In the following code, if view(2) or view(0,90) is defined before axis() which is not auto, then a default 3D figure will be plotted instead of flat 2D image. If view(2) or view(0,90) is defined after axis(), then it works. However, view(360,90) works before as well as after non-auto axis().
a=-1:0.1:1;
b=a;
[X,Y]=meshgrid(a,b);
Z=X.^2+Y.^2;
figure(1)
clf
surf(X,Y,Z),
%view(2), view(0,90) this does not work before axis() which is not auto
view(360,90), %this works before and after axis()
axis([X(1) X(end) Y(1) Y(end) min(min(Z)) max(max(Z))]),
%view(2), view(0,90) %this works after axis()
grid on

Réponses (1)

Nicolas B.
Nicolas B. le 17 Juil 2019
I have also experienced what you described. After investigation, even if it is not in the function documentation, the code of the function axis() resets the view of the plot to the default values. So no, it's not a bug, just an undocumented feature of the axis() function.
Therefore, I would recommend you to call axis() function before calling view().
  1 commentaire
G A
G A le 17 Juil 2019
Modifié(e) : G A le 17 Juil 2019
Why then axis does not reset view() in the case of view(360,90) and in the case of 3D view with any other angles than (0,90)? For example view(45,20) will be not reset and it works OK before as well as after non-auto axis(). If you use axis auto, then also there will be no reset for view(2) or view(0,90) used before axis(). 'Call axis before view in those two particular cases' must be documented in Matlab - not left to find such behaviour by users after trial and error. Otherwise, I think, that is a bug.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Graphics Object Programming dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by