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!