我在DataSet 1中有1331个4维数据条目。 我在数据集2中也有1331个4D数据条目。 我需要使用不同的颜色将这些数据集一起绘制在一个plotmatrix中。 怎么做 ? 这是我到目前为止所尝试的
plotmatrix([w01 ,w02, w03,w04]);hold on
plotmatrix([w11 ,w12, w13,w14]);
在散点图
的情况下效果很好scatter3(w01 ,w02, w03,'filled')
hold on;
scatter3(w11 ,w12, w13,'filled');
hold on;
scatter3(w21 ,w22, w23,'filled');
答案 0 :(得分:1)
万一其他人想知道,gplotmatrix是你的朋友。 试试这个:
V1 = rand(100,3); % a random vector
V2 = sin(V1); % a function of V1
groups = (V2(:,1)>0.3)*1; % defining groups for discriminating the variables.
gplotmatrix(V1,V2,groups)