📄 ft_sr_2.cc
字号:
// file: $PDSP/class/fourier_transform/v3.0/ft_sr_2.cc// // isip include files//#include "fourier_transform.h"#include "fourier_transform_constants.h" // method: sr_init_cc//// arguments:// int_4 order_a: (input) new order//// return: logical_1 indicating status//// creates lookup tables for sin and cosine terms. note that lookup// table computation is done in this method only when the order changes.//logical_1 Fourier_transform::sr_init_cc(int_4 order_a) { // if the order is the same as the previous call, we are done // if (sr_last_order_d == order_a) { return ISIP_TRUE; } // assign the new order // N_d = order_a; sr_last_order_d = N_d; // define local variables // float_8 q = ISIP_TWOPI / N_d; float_8 t; int_4 i; // allocate space for lookup tables // sr_wr_d = new float_8[N_d]; sr_wi_d = new float_8[N_d]; q = ISIP_TWOPI / N_d; // compute the lookup table entries // for (i = 0; i < N_d; ++i) { t = q*i; sr_wr_d[i] = cos(t); sr_wi_d[i] = sin(t); } // allocate memory for the temporary workspace used // sr_temp_d = new float_8[N_d]; // exit gracefully // return ISIP_TRUE; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -