考慮下面的例子:generateing在Matlab 3維散點圖
x1 = 13 + 6.*rand(100,1);
x2 = x1.*0.7;
x3 = (x2 + 6).*1.2;
figure(1);
plot(x1);hold on;plot(x2);hold on;plot(x3,'--r');
figure(2);
subplot(311);
scatter(x1,x2);
subplot(312);
scatter(x1,x3);
subplot(313);
scatter(x2,x3);
這裏我有高度相關的3個向量。是否有可能在Matlab中生成一個包含所有信息的散點圖,即散點圖顯示x1
和x2
之間的關係; x2
和; x1
和,可能是一個3d散點圖?
[在Matlab三維散點圖]的可能重複(http://stackoverflow.com/questions/3155343/3d-scatter-plots-in-matlab) –