Borrar filtros
Borrar filtros

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

12 visualizaciones (últimos 30 días)
Rebeca Miyar
Rebeca Miyar el 13 de Ag. de 2018
Comentada: Godwin el 19 de Sept. de 2022
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!

Respuestas (1)

Magdy Saleh
Magdy Saleh el 13 de Ag. de 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 comentario
Godwin
Godwin el 19 de Sept. de 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?

Iniciar sesión para comentar.

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by