section_1 = {[10:15, 6:18], [9:15, 6:20], [12:13, 34:36]};
for [i, j] = section_1
T(i,j, k + 1) = t_human *(T(i,j-1) + T(i-1,j) + T(i+1,j) + T(i,j+1)) + (1- 4* t_human) * T(i,j,k);
end
I want to iterate submatrices of matrix T, and predefined the row and column of submatrix in section_1.
I want to get each item of the section_1 and assign the value into [i, j] so that I can easily calculate the formula inside the for loop.
However, I get error.

댓글 수: 1

This is no valid Matlab syntax. Neither the Matlab interpreter nor the readers can guess, what you want.
[10:15, 6:18] % is the same as:
[10, 11, 12, 13, 14, 15, 6, 7, 8, 9, 10, ... 18]
Therefore it is not clear, what you call "item of the section_1".
This is no valid for loop:
for [i, j] = section_1
Whenever you menation an error, read the error message carefully. If this does not allow for finding a solution already, post a copy of the complete message. Do not let the readers guess, which message you get.
Unfortunately your text description of what you want to achive is not really clear. The code has no valid Matlab syntax. Therefore answering the question needs a lot of bold guessing.
T(i,j, k + 1) means, that T is a 3 dimensional array, but T(i,j-1) looks like a 2D array.
Please post some inputs, explain the procedure and a small example for the wanted output.

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2022년 11월 27일
편집: Matt J 2022년 11월 27일

0 개 추천

section_1 = {10:15, 6:18; 9:15, 6:20; 12:13, 34:36}';
for s = section_1
[i,j]=deal(s{:});
T(i,j, k + 1) = t_human *(T(i,j-1) + T(i-1,j) + T(i+1,j) + T(i,j+1)) + (1- 4* t_human) * T(i,j,k);
end

댓글 수: 2

What is the purpose of:
[i, j] = deal(s{:})
Because s is a scalar struct containg a vector, i and j have the same value afterwards.
Yes. I fixed it.
section_1 = {10:15, 6:18; 9:15, 6:20; 12:13, 34:36}';
for s = section_1
[i,j]=deal(s{:});
i,j
end
i = 1×6
10 11 12 13 14 15
j = 1×13
6 7 8 9 10 11 12 13 14 15 16 17 18
i = 1×7
9 10 11 12 13 14 15
j = 1×15
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
i = 1×2
12 13
j = 1×3
34 35 36

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

제품

질문:

2022년 11월 27일

댓글:

2022년 11월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by