convrt matrix into 8*8
1 回表示 (過去 30 日間)
古いコメントを表示
sir i want to conver 4*4 matrix into 8*8 matrix by adding zeros ..what is matlab code for that
0 件のコメント
採用された回答
Andreas Goser
2014 年 3 月 31 日
Your description is not clear. One example however:
A=zeros(8);
A(1:4,1:4)=B; % where B is your 4*4 matrix
2 件のコメント
Andreas Goser
2014 年 3 月 31 日
Depends on the conversion rule you want to apply. Can you give one example with actual numbers before and after?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Numeric Types についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!