How do you convert an array into a square matrix?

Say I have an array
x=[1 2 3 4 5 6 7 8 9 10]
and I want to convert this into a square matrix as follows:
M=
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10...
And so on so that there are a total of 10 rows and 10 columns
So I start with a [1x10]array and turn this into a [10x10] matrix
How do you do this??
Thank you!
MC

1 件のコメント

Matt J
Matt J 2012 年 9 月 29 日
It's often possible to avoid replicating data (and also desirable for memory-efficiency reasons) using the BSXFUN command. You should elaborate on why you think you need the rows replicated.

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

 採用された回答

Wayne King
Wayne King 2012 年 9 月 29 日
編集済み: Wayne King 2012 年 9 月 29 日

2 投票

x = [1 2 3 4 5 6 7 8 9 10];
x = repmat(x,10,1);

その他の回答 (2 件)

Matt Fig
Matt Fig 2012 年 9 月 29 日
編集済み: Matt Fig 2012 年 9 月 29 日

0 投票

Another:
x = 1:10; % Original
x = x(ones(1,length(x)),:) % indexing instead of repmatting.
Andrei Bobrov
Andrei Bobrov 2012 年 9 月 30 日

0 投票

M = ones(numel(x),1)*x;
M = bsxfun(@plus,x,zeros(numel(x),1));

カテゴリ

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

質問済み:

2012 年 9 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by