Package stallone.cluster

Examples of stallone.cluster.MilestoningFilter.filter()


    public IDoubleArray estimateCmilestoning(Iterable<IIntArray> trajs, Iterable<IIntArray> cores, int lag)
    {
        MilestoningFilter filter = new MilestoningFilter(cores);
        ArrayList<IIntArray> filteredList = new ArrayList<IIntArray>();
        for (IIntArray traj:trajs)
            filteredList.add(filter.filter(traj));
        return estimateC(filteredList, lag);
    }

    /**
     * Implicit assumption that cores are 0 1 2 ... n, while non-cores are negative numbers
View Full Code Here


    }

    public IDoubleArray estimateCmilestoning(IIntArray traj, Iterable<IIntArray> cores, int lag)
    {
        MilestoningFilter filter = new MilestoningFilter(cores);
        IIntArray filteredTraj = filter.filter(traj);
        return estimateC(filteredTraj, lag);
    }

    public IDoubleArray estimateCmilestoning(IIntArray traj, int lag)
    {
View Full Code Here

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.