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

📄 ft_cstr_1.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: $PDSP/class/fourier_transform/v3.0/ft_cstr_1.cc//// isip include files//#include "fourier_transform.h"#include "fourier_transform_constants.h"// method: constructor//// arguments: none//// return: none//// this is the default constructor//Fourier_transform::Fourier_transform() {  // initialize the debugging parameter  //  debug_level_d = ISIP_DEBUG_NONE;  // initialize protected data  //  N_d = (int_4)FT_DEFAULT_ORDER;  algorithm_d = (int_4)FT_DEFAULT_ALGO_NAME;  data_type_d = (int_4)FT_DEFAULT_DATA_TYPE;    // parameters related to the discrete fourier transform algorithm  //  df_last_order_d = (int_4)-1;  df_wr_d = (float_8*)NULL;  df_wi_d = (float_8*)NULL;    // parameters related to the radix-2 algorithm  //  rad2_last_order_d = (int_4)-1;  rad2_wr_d = (float_8*)NULL;  rad2_wi_d = (float_8*)NULL;  rad2_temp_d = (float_8*)NULL;    // parameters related to the radix-4 algorithm  //  rad4_last_order_d = (int_4)-1;  rad4_wr_d = (float_8*)NULL;  rad4_wi_d = (float_8*)NULL;  rad4_temp_d = (float_8*)NULL;  // parameters related to the split-radix algorithm  //  sr_last_order_d = (int_4)-1;  sr_wr_d = (float_8*)NULL;  sr_wi_d = (float_8*)NULL;  sr_temp_d = (float_8*)NULL;  // parameters related to the fast-hartley algorithm  //  fh_last_order_d = (int_4)-1;  fh_temp_d = (float_8*)NULL;  fh_temp_input_d = (float_8*)NULL;  fh_temp_output_d = (float_8*)NULL;  // parameters related to the quick fourier transform algorithm  //  qf_last_order_d = (int_4)-1;  qf_real_coeff_d = (float_8*)NULL;  qf_imag_coeff_d = (float_8*)NULL;  qf_real_temp_d  = (float_8*)NULL;  qf_imag_temp_d  = (float_8*)NULL;  qf_comp_real_coeff_d = (float_8*)NULL;  qf_comp_imag_coeff_d = (float_8*)NULL;  qf_comp_real_temp_d  = (float_8*)NULL;  qf_comp_imag_temp_d  = (float_8*)NULL;  // parameters related to the decimation-in-time-frequency algorithm  //  ditf_last_order_d = (int_4)-1;  ditf_wr_d = (float_8*)NULL;  ditf_wi_d = (float_8*)NULL;  ditf_temp_d = new float_8[N_d];  ditf_trans_factor_indices_d = new int_4[N_d];  ditf_indices_d = new int_4[N_d >> 1];    // exit gracefully  //}

⌨️ 快捷键说明

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