How can I write matlab program of following equation.

 Accepted Answer

Try this:
dissim(cx, cy) = sum((vx-vy)./(vx+vy))

1 Comment

Slight correction:
dissim = sum(abs((vx-vy)./(vx+vy)))
Best wishes
Torsten.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!