Adding zeros in the empty places in a matrix.
3 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
KSSV
2021 年 11 月 12 日
A = rand(252,1) ;
iwant = zeros(252,1) ;
idx = [1 13 25 73 121 109 97 61] ;
iwant(idx) = A(idx) ;
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!