You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using pcolor(X,Y,C) specifiy the x- and y-coordinates for the vertices of values in matrix C, a completely different plot is being created from expected.
X = [1 2 3; 1 2 3; 1 2 3];
Y = X';
C = [3 4 5; 1 2 5; 5 5 5];
pcolor(X,Y,C)
fig2plotly(gcf, 'offline', false);