Find differences in a set of points without a for loop

조회 수: 4 (최근 30일)
Sonoma Rich
Sonoma Rich 2015년 4월 21일
댓글: Image Analyst 2022년 5월 19일
I a vector of numbers that I am trying to find the differences between each element in the vector without a for loop. Below is a code example. Is there a more efficient way to execute this code without a for loop?
x = rand(20,1);
diff = zeros(length(x),length(x));
for ix = 1:length(x)
for iy = (ix+1):length(x)
diff(ix,iy) = abs(x(ix) - x(iy));
end
end

답변 (3개)

Image Analyst
Image Analyst 2015년 4월 21일
편집: Image Analyst 2015년 4월 21일
diff() is a built in function. Don't use it for a variable name.
For a microscopic length such as 20, don't worry about a for loop. It won't take any time at all, and in fact may take less than calling some fancy function.
  댓글 수: 1
Image Analyst
Image Analyst 2015년 4월 21일
Richard's "Answer" moved here since it is not an answer to the original question:
Thanks for the help. My actual code has a vector that is much larger. I was just using this as an example.

댓글을 달려면 로그인하십시오.


Mehri Mehrnia
Mehri Mehrnia 2022년 5월 19일
I have the question to find all pair-wise difference in a group without loop!
My array in scale of milions!

Bruno Luong
Bruno Luong 2022년 5월 19일
편집: Bruno Luong 2022년 5월 19일
x = randi(10,3,1)
x = 3×1
5 4 8
d = abs(x - x.')
d = 3×3
0 1 3 1 0 4 3 4 0

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by