Distance between vectors, and does "bsxfun" do anything here?
Mostra commenti meno recenti
Say we have the following matrix `x`:
x = [1 4 3; 6 4 3; 6 9 3; 2 4 3; 5 4 0; 5 3 1; 6 4 7];
And, say that from that matrix, we selcted the following pixels to be our points of interest:
p = [4 6 9 0];
For each element in `x`, say we have a *degree of membership* that ranges from `0-1` and which represents how much oes that element belong to some region.
Say, also, that we have some elements as a vector from that region of interest and which were set to `1` as follows:
C = [1 1 1 1 1 1 1];
Provided that the *degree of membership* values of those elements = `1`
Let us assume that the *degree of membership* values of each element represents the feature of that element, my question is: How can we select the point `p` that minimizes the distance between `x` & `C`?
Does `bsxfun` help in anyway here?
Thanks.
2 Commenti
Jan
il 24 Feb 2013
What is the meaning of "p = [4 6 9 0];"? Are these coordinates or values?
The question is very unclear. Please rephrase it.
Image Analyst
il 24 Feb 2013
You can get some more unclear stuff in one of his two other duplicate questions: http://www.mathworks.com/matlabcentral/answers/64678-selecting-that-pixel-that-minimizes-the-distance
Risposte (0)
Categorie
Scopri di più su Programming in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!