create a matrix!

Hello I have
row=[1 2];
col=[10 11 13 ];
I want to have b=[10 11 13; 10 11 13]
How can i do that?

1 件のコメント

Walter Roberson
Walter Roberson 2012 年 6 月 1 日
Please do not Tag specific individuals for a question, as it puts pressure on the named person to answer.

サインインしてコメントする。

 採用された回答

Honglei Chen
Honglei Chen 2012 年 6 月 1 日

1 投票

repmat(col,2,1)
or
repmat(col,numel(row),1)

4 件のコメント

Andrea
Andrea 2012 年 6 月 1 日
but it does not work for other row and col: Please consider example below:
row=[1 2 3 4 5 6 7];
col=[ 537 538];
And I want b=[ 537 538; 537 538; 537 538; 537 538; 537 538; 537 538; 537 538]
can you please again help me?
Honglei Chen
Honglei Chen 2012 年 6 月 1 日
I updated the answer. What you really need is 7 rows.
Andrea
Andrea 2012 年 6 月 1 日
It works now. I have some little matrices with different size (such as 7*3, 2*5, 8*1,...) and I need to put them in a bigger matrix. My problem actually is I want similar arrays with similar row or col is put in the same position (array) in the bigger matrix. It actually have taken a lot of time until now and no matter how much I have spent on it, It still does not work!
Honglei Chen
Honglei Chen 2012 年 6 月 6 日
You may want to start a new thread and explain the issue. I'm sure someone here can help.

サインインしてコメントする。

その他の回答 (1 件)

Ryan
Ryan 2012 年 6 月 1 日

1 投票

row = [1 2];
col = [10 11 13];
b = ones(length(row),length(col));
clear m
for m = 1:length(row)
b(m,:) = col;
end

1 件のコメント

Andrea
Andrea 2012 年 6 月 1 日
It works for all row and col. Thanks a lot.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by