How can i biplot two matrix?
Afficher commentaires plus anciens
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
Réponses (1)
Ameer Hamza
le 19 Avr 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);
Catégories
En savoir plus sur Line Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!