How can i biplot two matrix?
古いコメントを表示
I have two matrix, G and H :
G =
0.6837 -0.9827
-0.2488 -1.0057
-0.1144 1.2785
1.1448 0.6161
-1.4653 0.0937
H =
-8.0284 2.5333
-1.9821 0.9213
-0.7249 0.4843
10.8902 2.0675
And i need to make a 2D biplot for this two matrix
回答 (1 件)
Ameer Hamza
2020 年 4 月 19 日
This will create biplot of these matrices in two seperate figures
G = ...
[ 0.6837 -0.9827
-0.2488 -1.0057
-0.1144 1.2785
1.1448 0.6161
-1.4653 0.0937];
H = ...
[-8.0284 2.5333
-1.9821 0.9213
-0.7249 0.4843
10.8902 2.0675];
figure();
biplot(G);
figure();
biplot(H);
カテゴリ
ヘルプ センター および File Exchange で Dimensionality Reduction and Feature Extraction についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!