Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 20302fd

Browse filesBrowse files
author
linyiqun
committed
维特比算法宏定义变量类
维特比算法宏定义变量类
1 parent 13f6c78 commit 20302fd
Copy full SHA for 20302fd

File tree

Expand file treeCollapse file tree

1 file changed

+24
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+24
-0
lines changed
Open diff view settings
Collapse file
+24Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package DataMining_Viterbi;
2+
3+
/**
4+
* 基本变量定义类
5+
* @author lyq
6+
*
7+
*/
8+
public class BaseNames {
9+
//日期天数下标
10+
public static final int DAY1 = 0;
11+
public static final int DAY2 = 1;
12+
public static final int DAY3 = 2;
13+
14+
//天气属性类别
15+
public static final int WEATHER_SUNNY = 0;
16+
public static final int WEATHER_CLOUDY = 1;
17+
public static final int WEATHER_RAINY = 2;
18+
19+
//湿度属性类别
20+
public static final int HUMIDITY_DRY = 0;
21+
public static final int HUMIDITY_DRYISH = 1;
22+
public static final int HUMIDITY_DAMP = 1;
23+
public static final int HUMIDITY_SOGGY = 1;
24+
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.