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

📄 filterif.java

📁 一个用java写的地震分析软件(无源码)-used to write a seismic analysis software (without source)
💻 JAVA
字号:
package org.trinet.util;

public interface FilterIF {
/** Return reference to input object parameter which contains a representation
 *  of a waveform time series.
 * Object could be an array or more complex object such as a float[],
 * jasi.Waveform or jasi.WFSegment.
 * Specific filter implementations can define the types of input and output
 * objects but should check for valid Object types.
 */
    /** Return a filtered COPY of the passed object. */
    Object filter(Object wave);

    /** Create a filter of the type described by String 'type'. The valid values
     *  and meanings of 'type' is filter dependent.
     *  For example: "HIGHPASS", "LOWPASS", etc.*/
    FilterIF getFilter(String type);

    /** Create a filter for timeseries of the given sample rate. This assumes
     *  that sample rate is the only significant parameter for the filter. */
    FilterIF getFilter(int sampleRate);
}

⌨️ 快捷键说明

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