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

📄 ft_get_0.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: $PDSP/class/fourier_transform/v3.0/ft_get_0.cc//// isip include files//#include "fourier_transform.h"#include "fourier_transform_constants.h"// method: get_algorithm_name_cc //// arguments://         char_1* algorithm_name : (output) the algorithm name//// return: a logical_1 value indicating status//// this method gets the name of the fft algorithm being used//logical_1 Fourier_transform::get_algorithm_name_cc(					char_1* algorithm_name_a) {  // check for space  //  if (algorithm_name_a == (char_1*)NULL) {    error_handler_cc((char_1*)"get_algorithm_name_cc",		     (char_1*)"no space allocated");  }    // check the algorithm  //  if (algorithm_d == FT_DF) {    strcpy((char*)algorithm_name_a,(char*)FT_DF_NAME);  }    else if (algorithm_d == FT_RAD2) {    strcpy((char*)algorithm_name_a,(char*)FT_RAD2_NAME);  }    else if (algorithm_d == FT_RAD4) {    strcpy((char*)algorithm_name_a,(char*)FT_RAD4_NAME);  }    else if (algorithm_d == FT_FH) {    strcpy((char*)algorithm_name_a,(char*)FT_FH_NAME);  }  else if (algorithm_d == FT_SR) {    strcpy((char*)algorithm_name_a,(char*)FT_SR_NAME);   }  else if (algorithm_d == FT_QF) {    strcpy((char*)algorithm_name_a,(char*)FT_QF_NAME);   }    else if (algorithm_d == FT_DITF) {    strcpy((char*)algorithm_name_a,(char*)FT_DITF_NAME);  }  else if (algorithm_d == FT_PFA) {    strcpy((char*)algorithm_name_a,(char*)FT_PFA_NAME);  }  else {    return ISIP_FALSE;  }    // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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