Doubt about finding the nearest values between array and a matrix
이전 댓글 표시
Hi, everybody
I'm trying to find the nearest values from a array inside a matrix. Example:
Array = [12, 16, 300, 200, 250, 380, 145, 6, 8, 10, 12, 100, 16, 440]; %array with 14 elements
Matrix = [15, 20, 310; 1000, 500, 1; 146, 10, 11; 5, 23, 800; 600, 100, 50]; %matrix 5x3
but when a try:
for i=1:size(Array,2)
[~,ID] = min(abs(Matrix - Array(i)),[],1);
end
The ID have just 3 elements, not 14. I don't understand why. Anybody could explain to me. please.
Att,
Paulo
채택된 답변
추가 답변 (1개)
Jon
2022년 1월 25일
1 개 추천
You are overwriting the value of ID with each pass through your loop, so you only see the value for the last pass.
If you want the value for every pass then you need to assign ID(i) in the loop
댓글 수: 5
DGM
2022년 1월 25일
I'm just going to add that clearing up this confusion would be helped greatly by using meaningful variable names. Calling an array "Array" is about as fruitful as naming your kids "Hey You".
Paulo Cunha
2022년 1월 25일
편집: Paulo Cunha
2022년 1월 26일
Paulo Cunha
2022년 1월 25일
Paulo Cunha
2022년 1월 26일
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!