フィルターのクリア

How do you make the rows of one matrix/vector be the same amount as the rows of another matrix

1 回表示 (過去 30 日間)
So I have one column vector
A = [0:0.1:round(d/(min(B)))]'
and need to make a matrix that has the same amount of rows that A has, along with 5 columns. So I was thinking something alone the lines of
C = zeros(size(A),5)
But clearly that doesn't work. What can I do?

採用された回答

KSSV
KSSV 2016 年 2 月 8 日
A = [0:0.1:round(d/(min(B)))]' ;
C = zeros(size(A,1),5)

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by