How to create a matrix with the same number in every few rows?

11 次查看(过去 30 天)
I need to create a matrix that's 250X250. Also, I need to have the same number in every 50 rows, something like this:
111
111
222
222
333
333
How can I do that? Thank you!

回答(1 个)

Magdy Saleh
Magdy Saleh 2018-8-13
Create a 250 by 250 matrix:
A = zeros(250)
And then to fill any 50 rows with a particular number:
A(1:50,:) = 1
This will fill rows 1 to 50 with the number 1. You can do this for any number then to complete your task. Hope this helps
  1 个评论
Godwin
Godwin 2022-9-19
I have a similar problem also. I need a 256x256 matrix where the first row is 1 and the second is 2 all the way to 256. 1 1 1....1 2 2 2....2 . . . 256 256 256.....256. Like this. Can you help me?

请先登录,再进行评论。

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by