次の例を検討してください。
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 つのベクトルがあります。x1
Matlab で、すべての情報を含む 1 つの散布図、つまりとの関係を示す散布図を生成することは可能ですかx2
? x2
そしてx3
; x1
そしてx3
、おそらく3D散布図?