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 plotmatrix() to create a matrix of subaxes containing scatter plots of the columns of X against the columns of Y, there's no separation within each scatter plot and all of them are being plotted in the same grid. Also, as LineSpec parameter isn't working to change de color (#187), there's no way of forcing all scatter plots to have the same marker color.
rng(1)
X = randn(50,3);
Y = reshape(1:150,50,3);
plotmatrix(X,Y)
fig2plotly();