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

Respuestas (1)

Ameer Hamza
Ameer Hamza el 19 de Abr. de 2020

0 votos

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);

Categorías

Preguntada:

el 19 de Abr. de 2020

Respondida:

el 19 de Abr. de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by