Effacer les filtres
Effacer les filtres

Obtain the transposed matrix from 2 vectors (MATLAB)

2 vues (au cours des 30 derniers jours)
Afluo Raoual
Afluo Raoual le 4 Juin 2022
Modifié(e) : Matt J le 4 Juin 2022
Dear,
I have these two vectors:
c=[1 0 0 0 0 1 1 0 1 0 0 0]
s=[0 1 0 1 1 1]
where s=c*(transposed H)
H here is a matrix
I tried to obtain the transposed matrix HT like that:
c=[1 0 0 0 0 1 1 0 1 0 0 0];
s=[0 1 0 1 1 1];
HT=s/c;
But I got an error (Matrix dimensions must agree)
How can I obtain the transposed matrix please !

Réponses (1)

Matt J
Matt J le 4 Juin 2022
Modifié(e) : Matt J le 4 Juin 2022
You can do a pseudo-inversion with,
c=[1 0 0 0 0 1 1 0 1 0 0 0];
s=[0 1 0 1 1 1];
HT=c\s;
c*HT-s
ans = 1×6
0 0 0 0 0 0
however, you have far more unknowns than equations, so there is no hope of uniquely recovering the original matrix.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by