Hi:
(1) Here is why your e-mails look mangled on this list:
[[alternative HTML version deleted]]
R-help is a text-only list, so please change your mailer's
settings to send ASCII text rather than HTML.
(2) The print method you see displayed in dd1 is equivalent to the following:
ddm * low
Given a vector;> ab = seq(0.5,1, by=0.1)> ab[1] 0.5 0.6 0.7 0.8 0.9 1.0
The euclidean distance between the vector elements is given by the lower
triangular matrix > dd1 =
dist(ab,"euclidean")> dd1 1 2 3 4 52 0.1 3 0.2 0.1
4 0.3 0.2 0.1 5 0.4 0.3 0.2 0.
2 matches
Mail list logo