Assign different values per column using logical indexing

12 visualizaciones (últimos 30 días)
Jose Pratdesaba
Jose Pratdesaba el 27 de Sept. de 2023
Comentada: Dyuman Joshi el 27 de Sept. de 2023
I am new to logical indexing and am having some trouble with a specific issue. I want to use logical indexing to assign a certain value to all values in a column where the condition is true, and then a different value to the next column where another condition is true at the same time. E.g.:
matrix = magic(5); % data matrix
boundary_conditions = [10, 100]; % boundary conditions
matrix(matrix(:, [2,3]) < boundary_conditions) = boundary_conditions; % use logical indexing to set values of time columns
Unable to perform assignment because the left and right sides have a different number of elements.
Essentially, I want to find which values in column 2 are below 10, and which values in column 3 are below 100. Then, those that are in column 2, set them to 10, and those that are in column 3, set to 100. And have that reflected in the original matrix, so only columns 2 and 3 are changed.
For some context:
I am working on a molecular dynamics simulation, so I want to check after each timestep whether a particle has passed the boundary in the x- or y- direction.
Because of this, performance is a necessity, since I am working with ~3,000,000 time iterations. So I want to maximize my efficiency.

Respuesta aceptada

Voss
Voss el 27 de Sept. de 2023
Editada: Voss el 27 de Sept. de 2023
matrix = magic(5); % data matrix
boundary_conditions = [10, 100]; % boundary conditions
disp(matrix);
17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 10 12 19 21 3 11 18 25 2 9
% using logical indexing:
idx = matrix(:,2) < boundary_conditions(1);
matrix(idx,2) = boundary_conditions(1);
idx = matrix(:,3) < boundary_conditions(2);
matrix(idx,3) = boundary_conditions(2);
disp(matrix);
17 24 100 8 15 23 10 100 14 16 4 10 100 20 22 10 12 100 21 3 11 18 100 2 9
% another approach using max() function:
matrix = magic(5); % restore original data matrix
matrix(:,2) = max(matrix(:,2),boundary_conditions(1));
matrix(:,3) = max(matrix(:,3),boundary_conditions(2));
disp(matrix);
17 24 100 8 15 23 10 100 14 16 4 10 100 20 22 10 12 100 21 3 11 18 100 2 9
% another approach using max() function:
matrix = magic(5); % restore original data matrix
matrix(:,[2 3]) = max(matrix(:,[2 3]),repmat(boundary_conditions,size(matrix,1),1));
disp(matrix);
17 24 100 8 15 23 10 100 14 16 4 10 100 20 22 10 12 100 21 3 11 18 100 2 9
  4 comentarios
Jose Pratdesaba
Jose Pratdesaba el 27 de Sept. de 2023
Ahh I see now, thank you very much!
Voss
Voss el 27 de Sept. de 2023
You're welcome!

Iniciar sesión para comentar.

Más respuestas (1)

Dyuman Joshi
Dyuman Joshi el 27 de Sept. de 2023
A simpler approach for your task would be
matrix = magic(5) % data matrix
matrix = 5×5
17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 10 12 19 21 3 11 18 25 2 9
matrix(:,2) = max(matrix(:,2),10)
matrix = 5×5
17 24 1 8 15 23 10 7 14 16 4 10 13 20 22 10 12 19 21 3 11 18 25 2 9
matrix(:,3) = max(matrix(:,3),100)
matrix = 5×5
17 24 100 8 15 23 10 100 14 16 4 10 100 20 22 10 12 100 21 3 11 18 100 2 9
If you have to do this for some specific columns or all the columns (for which manually doing that would be a tedious task) you can integrate a for loop.
%For example
matrix = magic(5)
matrix = 5×5
17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 10 12 19 21 3 11 18 25 2 9
s = size(matrix,2);
boundary_conditions = randi([10 20],1,s)
boundary_conditions = 1×5
16 19 11 11 20
for k=1:s
matrix(:,k) = max(matrix(:,k),boundary_conditions(k));
end
matrix
matrix = 5×5
17 24 11 11 20 23 19 11 14 20 16 19 13 20 22 16 19 19 21 20 16 19 25 11 20
  5 comentarios

Iniciar sesión para comentar.

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by