thresholdinfo.java

来自「数据挖掘中很不错的源码,一个share算法的java源程序,有极好的可读性」· Java 代码 · 共 24 行

JAVA
24
字号
package shared;
import java.lang.*;

/** Class structure used for maitaining threshold information in
 * Entropy to make score arrays.
 */
public class ThresholdInfo {
    /** The index of this threshold.
     */
    public int index;
    /** The score value for this particular threshold.
     */
    public double score;
    /** The weight of this particular threshold.
     */
    public double weight;
    /** Constructor.
     */
    public ThresholdInfo(){
        index = Globals.UNDEFINED_INT;
        score = Globals.UNDEFINED_REAL;
        weight = Globals.UNDEFINED_REAL;
    }
}

⌨️ 快捷键说明

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