Replace the elements of a matrix
15 ビュー (過去 30 日間)
古いコメントを表示
Hello everyone,
I have an A matrix as
A=[a b ; c d ; e f ; g h]
and want to get B matrix as
B=[a ; b; c; d; e; f; g; h]
using A matrix. How can I code it? Thanks
0 件のコメント
採用された回答
per isakson
2019 年 6 月 9 日
編集済み: per isakson
2019 年 6 月 9 日
One way
z = permute( A, [2,1] );
B = z(:);
or
z = permute( A, [2,1] );
B = reshape( z, [],1 );
その他の回答 (2 件)
TADA
2019 年 6 月 9 日
B = reshape(A',numel(A),1)
1 件のコメント
Walter Roberson
2019 年 6 月 9 日
A' is only correct for real valued entries, as it is the conjugate transpose.
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!