⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 streami.java

📁 用于multivariate时间序列分类
💻 JAVA
字号:
/** * Interface for Stream objects.  * Allows user to ask about the raw data.  *  * @author Waleed Kadous * @version $Id: StreamI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $ * * */package tclass; import java.io.*; import tclass.util.*;   public interface StreamI extends Cloneable, Serializable  {    /**     * Gets the comment associated with this object      *      * @return the comment of this label      */    public String getComment();     /**     * Set the label of this stream.      *     * @param comment the comment associated with this stream     */    public void setComment(String comment);         /**      * Gets the number of frames     *     * @return Number of frames in this stream.      */    public int numFrames();     /**     * Gets the value for the frame f and the channel c     *     * @param f Frame of interest     * @param c Channel of interest     * @return A float representing the information      *          stored for this channel     */             public float valAt(int f, int c);     /**     * Gets a requested channel.      * Note: The number of channels can be retrieved from the DomDescI object.      *     * @param c Channel of interest     * @return A channel     *              */    public ChannelI chanAt(int c);     }

⌨️ 快捷键说明

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