Package edu.mit.simile.vicino

Source Code of edu.mit.simile.vicino.Meter

package edu.mit.simile.vicino;

import edu.mit.simile.vicino.distances.Distance;

public class Meter extends Operator {

    public static void main(String[] args) throws Exception {
        Distance d = getDistance(args[0]);
        System.out.println(args[1] + " <- " + d.d(args[1], args[2]) + " -> " + args[2]);
    }

}
TOP

Related Classes of edu.mit.simile.vicino.Meter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.