How do I fill in a matrix in this way?

조회 수: 1 (최근 30일)
Nick Thomas
Nick Thomas 2018년 4월 21일
댓글: Nick Thomas 2018년 4월 22일
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?

채택된 답변

Image Analyst
Image Analyst 2018년 4월 22일

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by