clusterveci.java

来自「用于multivariate时间序列分类」· Java 代码 · 共 50 行

JAVA
50
字号
package tclass;   import java.io.*; /**  * Represents a vector of clusters.   *  *   * @author Waleed Kadous  * @version $Id: ClusterVecI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $  */public interface ClusterVecI extends Serializable, Cloneable {     /** Get the number of clusters described in this set.      *     * @return number of clusters.      */         public int size();         /**      * Creates a copy of this object     *     * @return A shallow copy of the current object.      */     public Object clone();     /**     * Get a cluster by index.     *     * @param i Tndex of the cluster you want.  <code>0 &lt;= i &lt; this.size()</code>     * @return The <i>i</i>th element if i is valid, and null otherwise.      *     */     public ClusterI elAt(int i);         /**     * Call findMatch on each cluster to find the whole best thingie      *     */     /*    public StreamAttValI matchAll(StreamI si, StreamEventsI sei); */    public ClusterMem findBestLabel(EventI event); }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?