Azzera filtri
Azzera filtri

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

7 visualizzazioni (ultimi 30 giorni)
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!

Risposte (1)

Magdy Saleh
Magdy Saleh il 13 Ago 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 Commento
Godwin
Godwin il 19 Set 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?

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by