- https://www.mathworks.com/help/matlab/ref/find.html
- https://www.mathworks.com/help/matlab/ref/ind2sub.html#d126e815337
Surface between two point clouds.
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi everybody!
I have a 3D matrix (NxNxM) describing a space in which there are three integer values to distinguix three diferent volumes in the space (0,1 and 2). I want two extract the indexes of neighbouring points with values 1 and 2, so I can later adjust a plane separating this two regions.
Any help regarding the extraction of the desired indexes is appreciated, thank you!
0 commentaires
Réponses (1)
Dinesh
le 20 Sep 2023
Hi Núria,
I understand that you are trying to extract indices from a 3D matrix.
Assuming your 3D matrix is of values 0, 1, 2 that represent three different volumes in the space. We can extract the linear indices of the values using the 'find' function in MATLAB. 'find' function returns returns a vector containing the linear indices of each nonzero element in array X.
Further you can convert the linear indices to subscripts using the 'ind2sub' function in MATLAB.
Please go through this example for more details
% creating a 3D array
A = [0,2;1,0];
B = [2,0;1,0];
C = [2,1;0,0];
Z = cat(3,A,B,C)
% find returns indices of all non zero indices.
linear_indices_1 = find(Z==1)
% caluculation the row , column and depth of linear index 2
[row, col, dimension] = ind2sub(size(Z), 2)
Please refer to the following MATLAB documentation for more details on 'find' and 'ind2sub' functions
Hope this helps.
Best regards,
Dinesh Reddy Gatla.
0 commentaires
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!