How to extend a row vector so the result is a table?

2 次查看(过去 30 天)
I have 1 x 1200 row vector and need to extend each column down 1200 spots so that the result is a 1200 x 1200 table with the same values of x
So for example:
4 3 1 2
would become
4 3 1 2
''''''''
. . . .
. . . .
x 1200
4 3 1 2

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2016-5-9
a=[4 3 1 2]
b=repmat(a,1200,1)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by