find minimum distance value

di = Yk - Wi where i = 1.... Q and k=1...M
Y =
0
0.693062745098039
0.369047058823529
0.299000000000000
0.345615686274510
0.356407843137255
0
0
W=
0.890903252535799
0.959291425205444
0.547215529963803
0.138624442828679
0.149294005559057
0.257508254123736
0.840717255983663
0.254282178971531
what is the output of di?

2 Comments

ADD
di=|yk-Wi|
one element at each iteration from y

Sign in to comment.

Answers (1)

[Yk, Wi] = meshgrid(Y, W);
min(Yk - Wi, 1)
min(Yk - Wi, 2)

4 Comments

Look ADD part
When you see "||" around a mathematical expression, that stands for taking a metric. The default metric is absolute value, which is abs() in MATLAB.
ok
min(Yk - Wi, 1)
min(Yk - Wi, 2)
whats the meaning of 1,2

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Asked:

on 19 Oct 2013

Commented:

on 19 Oct 2013

Community Treasure Hunt

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

Start Hunting!