19 lines
649 B
C
19 lines
649 B
C
/*********************************************************************************************
|
||
Description: 声明一些公用的函数
|
||
|
||
Copyright : All right reserved by ZheYuan.BJ
|
||
|
||
Author : Zhang Zhonghai
|
||
Date : 2023/09/18 adfasdf
|
||
***********************************************************************************************/
|
||
#ifndef __COMMON_H
|
||
#define __COMMON_H
|
||
|
||
|
||
/* 处理pubmed txt文件,结果保存在mat文件中 */
|
||
void ProcessPubmedTxt(int argc, const char** argv);
|
||
|
||
/* 获取pubmed文献中摘要所包含的高频词汇信息,并据此计算信息熵 */
|
||
void CalcEntropy(int argc, const char** argv);
|
||
|
||
#endif // !__COMMON_H
|