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

📄 example.cc

📁 这是一个从音频信号里提取特征参量的程序
💻 CC
字号:
// file: $isip/doc/examples/class/math/vector/math_vector_example_01/example.cc// version: $Id: example.cc,v 1.3 2000/12/17 18:26:04 hamaker Exp $//// isip include files//#include <VectorFloat.h>#include <VectorLong.h>#include <Console.h>// main program starts here://  this example demonstrates the use of math vector methods to manipulate//  the values of a vector.//int main () {    // define a vector of floats that is 5 elements long  // and a vector of integers  //  VectorFloat signal(5);  VectorLong idx;    // generate a ramp. it will start at 1.0 with a slope of 2.0.  //  signal.ramp(1.0, 2.0);    // print the signal using the debug method  //  signal.debug(L"The signal is ");    // generate an index array for reordering  //  idx.assign(L"4, 3, 2, 1, 0");    // time-reverse the signal via the reorder method.  //  signal.reorder(idx);    // verify that the signal is reversed  //  signal.debug(L"The time-reversed signal is ");    // increase the length of the signal to 10 elements.  //  signal.setLength(10);  // zero-out the new elements. this step is not strictly needed,  // since the values were initially zero and the program has never  // assigned them to other elements. however, the setLength() method  // does NOT zero out new elements, so if this vector was previously  // a longer length with non-zero elements in these new positions  // somewhat unpredictable results could occur.  //  for (long i = 5; i < 10; i++) {    signal(i) = 0;  }    // verify that the signal has been zero-stuffed  //  signal.debug(L"The zero-stuffed signal is ");    // exit gracefully  //  Integral::exit();}

⌨️ 快捷键说明

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