How do I fill in a matrix in this way?

2 visualizaciones (últimos 30 días)
Nick Thomas
Nick Thomas el 21 de Abr. de 2018
Comentada: Nick Thomas el 22 de Abr. de 2018
I want to fill in a large matrix and know what certain rows/columns/areas are. For example, say I have a 900x900 matrix. The 300th row may be 400, and the space from the 3rd row to the 9th row in the 4th to 9th columns is 800. The rest could be 200. How do I create a matrix by knowing these things?

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Abr. de 2018

Try this with your matrix, m

m = 200 * ones(200); % First initialize to all 200
m(300, :) = 400;  % Set row 300, all columns, to 400.
m(3:9, 4:9) = 800;  % Set this block to be all 800

Más respuestas (0)

Categorías

Más información sobre Logical 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