iterating with predefined submatrix range

2 Ansichten (letzte 30 Tage)
현우
현우 am 27 Nov. 2022
Kommentiert: Matt J am 27 Nov. 2022
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 Kommentar
Jan
Jan am 27 Nov. 2022
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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Matt J
Matt J am 27 Nov. 2022
Bearbeitet: Matt J am 27 Nov. 2022
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 Kommentare
Jan
Jan am 27 Nov. 2022
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.
Matt J
Matt J am 27 Nov. 2022
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

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by