matric "c" and "d" out of for loop and c row matrix corresponding to minimum distance

1 回表示 (過去 30 日間)
m=2
T=[1 0 0; 0 (1/sqrt(2)) (1/sqrt(2))];
V1=0.956
V2=2.4
A=[ 1 0 0];
B=[1 1 0];
D=B-A;
d1=m*A;
for X=1:1:m+1
c(x,:)=d1+D*(x-1)
Vndq=T*c(x,:)';
Vnq=Vndq(1,1)
Vnd=Vndq(2,1)
d(x)=abs(V2-Vnq)+abs(V1-Vnd)
end
in the code given minimum distance is
d =[1.3560 0.6489 0.8582]
and
C =
2 0 0
2 1 0
2 2 0
c row matrix 2 1 0 of the minimum distance 0.6489 should be obtained

採用された回答

Stephen23
Stephen23 2017 年 2 月 4 日
編集済み: Stephen23 2017 年 2 月 4 日
Here is a simpler version of your code:
m = 2;
T = [1,0,0;0,(1/sqrt(2)),(1/sqrt(2))];
V1 = 0.956;
V2 = 2.4;
c = zeros(m+1,3);
c(:,1) = m;
c(:,2) = 0:m;
Vndq = T*c.'
d = sum(abs(bsxfun(@minus,[V2;V1],Vndq)),1)
Use min to get the closest value:
>> [val,idx] = min(d)
val =
0.64889
idx =
2
>> c(idx,:)
ans =
2 1 0

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by