dist_type.h

来自「ears-0.32, linux下有用的语音信号处理工具包」· C头文件 代码 · 共 19 行

H
19
字号
#ifndef Dist_type_struct_h#define Dist_type_struct_h#ifdef R_DTW#include <string>typedef struct dist_type_struct   // DTW debug info{  float	distance;  int	index;  string fn;  int wc;} dist_type;inline bool operator<(const dist_type& lhs, const dist_type& rhs)   { return lhs.distance < rhs.distance; }#endif#endif

⌨️ 快捷键说明

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