Obtain the transposed matrix from 2 vectors (MATLAB)
조회 수: 1 (최근 30일)
이전 댓글 표시
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 !
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!