Is the gplotmatrix function capable of plotting with more than the 7 built in colors?
3 views (last 30 days)
Show older comments
I'm attempting to produce a group plot matrix using the following syntax;
[h, ax, bigax] = gplotmatrix(xvars, yvars, group, Color, 's', 10, 'off', 'none', xname, yname);
Where group is a 13 x 1 double consisting of:
[1; 1; 1; 1; 1; 1; 1; 1; 1; 1; 2; 1; 2]
And where Color is a 13 x 3 double consisting of:
[1 0 0; 1 0 0; 1 0 0; 1 0 0; 1 0 0; 1 0 0; 1 0 0; 1 0 0; 1 0 0; 1 0 0; 0 1 0; 1 0 0; 0 1 0]
The colors are the RGB triplet color codes corresponding to the values in the group.
When I attempt to build the gplotmatrix, all 13 of the group entries are RED. But the values of 2 should be GREEN.
When I substitute the RGB colors with the built in colors, the data points in the plots are properly color coded.
In reading the documentation pertaining to gplotmatrix, clr is a character array or string array of colors recognized by the plot function.
I use this approach when dealing with data series greater than 6, thus allowing for an expanded color pallett. But it appears gplotmatrix will not do this. Or should it?
Is this a known issue with this function?
0 Comments
Accepted Answer
Image Analyst
on 16 Aug 2019
Not sure but you might try a strategy similar to the attached emo where I plot more than the standard 7 or 8 colors with line plots.
More Answers (0)
See Also
Categories
Find more on Graphics Performance in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!