filt_set_0.cc

来自「这是处理语音信号的程序」· CC 代码 · 共 32 行

CC
32
字号
// file: filter/filt_set_0.cc//// isip include files//#include "filter.h"#include "filter_constants.h"#include <strings.h>// method: set_cc//// arguments://  float_8* data: (input) data for the filter to create//  int_4 width_d: (input) length of filter to create//// return: a logical_1 indicating status//logical_1 Filter::set_cc(float_8 *data_a, int_4 width_a) {  // allocate the data  //  allocate_cc(width_a);  // copy over the samples  //  memcpy(data_d, data_a, sizeof(float_8)*width_a);    // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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