How can i biplot two matrix?
Show older comments
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
Answers (1)
Ameer Hamza
on 19 Apr 2020
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);
Categories
Find more on Dimensionality Reduction and Feature Extraction in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!