How do I partition a n by m matrix into equal rows

7 visualizaciones (últimos 30 días)
Princewill Azorom
Princewill Azorom el 3 de Ag. de 2020
Comentada: Walter Roberson el 5 de Ag. de 2020
How do I partition an n by m matrix into equal rows please I've been trying to write a script that does this but I haven't been having much progress please can anyone help me
  2 comentarios
Matt J
Matt J el 4 de Ag. de 2020
Princewill Azorom's question moved here:
Okay... here goes. Write a function that takes two positive integer inputs n and m. The function returns a 3n by m matrix called T. The top third of T(an n by m submatrix) is all 1's, the middle third is all 2's while the bottom third is all 3's.
Walter Roberson
Walter Roberson el 5 de Ag. de 2020
Hint:
A = array of ones
B = array of twos
C = array of threes
[A;B;C]

Iniciar sesión para comentar.

Respuestas (1)

Matt J
Matt J el 4 de Ag. de 2020

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by