Clear Filters
Clear Filters

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

11 views (last 30 days)
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!

Answers (1)

Magdy Saleh
Magdy Saleh on 13 Aug 2018
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 Comment
Godwin
Godwin on 19 Sep 2022
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?

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!