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);
PR #341 fix this issue. This issue is related to pcolor similar to issue #265. Then working with this issue I was careful to ensure that modifications works for both issues (both #263 and for #265)
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.Expected and generated (https://chart-studio.plotly.com/~xarico10/789/#/) plots:


Examples on using
pcolor(X,Y,C)
can be found on:https://www.mathworks.com/help/matlab/ref/pcolor.html#mw_83e8289f-c7db-46ea-b8b5-7899343d24e1
The text was updated successfully, but these errors were encountered: