フィルターのクリア

Is it possible to copy a matrix with size (52x2) to another matrix with size (52x3)

2 ビュー (過去 30 日間)
Hello everyone, I want to copy a matrix with size (52x2) to another matrix which is full of zeros (52x3) and I want the third column of (53x3) matrix to stay still full of zeros. Is it possible? And how can ı do it? Thank you

採用された回答

Walter Roberson
Walter Roberson 2018 年 9 月 29 日
Source = randi(10, 52, 2); %for example
Target = zeros(52, 3);
Target(:,1:2) = Source;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNaNs についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by