Finding three columns in one variable in another variable
이전 댓글 표시
Dear MATLAB Community,
I was wondering if you were able to help me with the following problem. I am trying to find the following coordinates (from Columns 2-4 in CourseMeshNodeLocs) in FibreOrientationPositionElement (Columns 8-10). Columns 2-4 wont exactly match Columns 8-10, hence some of of the logic functions I have learnt over the past few weeks will not help me.
I want to find a row in FibreOrientationPositionElement (Columns 8-10) that closly represents a row in CourseMeshNodeLocs (Columns 2-4), either through averaging or finding the closest one. Once the closest co-ordinates can be found, I then want to output columns 2-7 in FibreOrientationPositionElement for each row in CourseMeshNodeLocs.
What would be the best way of doing this? I had an idea regarding if and for loops defining a range which the co-ordinates need to be in, but I believe there may be another simpler way, which I can learn for the future.
Attached are some files and a code.
CoarseMeshNodeLocs = dlmread('CoarseTjointMesh.txt','',9,0); %Fibre Orientation @ Elements. Read text file, first few lines not needed
CoarseMeshNodeLocs(:,[2 3 4]) = CoarseMeshNodeLocs(:,[2 3 4])*10^-3; %Converts mm into m
FibreOrientationPositionElement = dlmread('matrix.txt','',0,0); %Fibre Orientation and Position data at elements
댓글 수: 4
dpb
2020년 1월 12일
"I want to find a row in FibreOrientationPositionElement (Columns 8-10) that closly represents a row in CourseMeshNodeLocs (Columns 2-4), either through averaging or finding the closest one..."
"Closesest" in what sense? Smallest difference in absolute position, minimum-maximum difference from given coordinate, ..., ? The simplest would seem to be to just compute a position from origin to each and then look at differences but not clear whether that would have produce the type of result looking for or not...
JLV
2020년 1월 12일
Mohammad Sami
2020년 1월 16일
tol = 0.001; % fine tune for your needs.
% Two values, u and v, are within tolerance if abs(u-v) <= tol*max(abs([A(:);B(:)])).
% see Matlab docs for more details
LIA = ismembertol(Col_2_4,Col_8_10,tol,'ByRows',true);
JLV
2020년 1월 26일
채택된 답변
추가 답변 (1개)
Raunak Gupta
2020년 1월 22일
Hi,
You may try finding difference between two matrices (here m x 3 matrices as m rows and 3 columns). From that you may try finding the max of the absolute of difference for each rows so it will result into a m x 1 vector. In that the minimum value will define the closest two rows in the two set of columns. You may use something like 10 times(This needs to be tuned according to what is required) of this lowest value and then find corresponding “similar” rows by using ismembertol. You may find below code useful.
% Here since the size is different for FibreOrientationPositionElement
% taking only the Number of elements that are there in CoarseMeshNodeLocs
FibreOrientationPosition_col_8_10 = FibreOrientationPositionElement(1:2393,8:10);
CoarseMeshNodeLocs_col_2_4 = CoarseMeshNodeLocs(:,2:4);
% Absolute difference between two matrices
difference = abs(FibreOrientationPosition_col_8_10 - CoarseMeshNodeLocs_col_2_4);
minimum_tol = min(max(difference,[],2));
% Here the maximum_tol can be tuned
maximum_tol = minimum_tol*10;
% Returns logical array of the similar rows
similarRowsIndex = ismembertol(FibreOrientationPositionElement(:,8:10),CoarseMeshNodeLocs(:,2:4),maximum_tol,'ByRows',true);
% Column 2-7 Values of FibreOrientationPositionElement for similar rows
similarRowsProperties = FibreOrientationPositionElement(similarRowsIndex,2:7);
Hope this helps.
댓글 수: 4
JLV
2020년 1월 25일
JLV
2020년 1월 26일
Raunak Gupta
2020년 1월 26일
Hi, I also see Stephen's Method more comphrensive. I just thought in the beginning that computations will be a lot if try to rigoursly finding difference between two matrices. Anyways I guess this method will provide much exact answer.
JLV
2020년 1월 26일
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!