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

📄 bark_02.cc

📁 这是一个从音频信号里提取特征参量的程序
💻 CC
字号:
// file: $isip/class/numeric/Bark/bark_02.cc// version: $Id: bark_02.cc,v 1.1 2001/04/24 19:22:15 srivasta Exp $//// isip include files//#include <Console.h>#include "Bark.h"// method: diagnose//// arguments://  Integral::DEBUG level: (input) debug level for diagnostics//// return: a boolean value indicating status//boolean Bark::diagnose(Integral::DEBUG level_a) {    //---------------------------------------------------------------------  //  // 0. preliminaries  //  //---------------------------------------------------------------------  // output the class name  //  if (level_a > Integral::NONE) {    String output(L"diagnosing class ");    output.concat(CLASS_NAME);    output.concat(L": ");    Console::put(output);    Console::increaseIndention();  }   //--------------------------------------------------------------------  //  // 1. required public methods  //  //--------------------------------------------------------------------  // set indentation  //  if (level_a > Integral::NONE) {    Console::put(L"testing required public methods...\n");    Console::increaseIndention();  }  // test destructor/constructor(s) and memory management  //  Bark bark_fw;    Bark::setGrowSize((long)500);  for (long j = 1; j <= 100; j++) {    Bark** Barks = new Bark*[j * 100];        // create the objects    //    for (long i = 0; i < j * 100; i++) {      Barks[i] = new Bark();    }        // delete objects    //    for (long i = (j * 100) - 1; i >= 0; i--) {      delete Barks[i];    }        delete [] Barks;  }  // reset indentation  //  if (level_a > Integral::NONE) {    Console::decreaseIndention();  }    //--------------------------------------------------------------------------  //  // 2. class-specific public methods:  //     computational methods  //  //--------------------------------------------------------------------------  // set indentation  //  if (level_a > Integral::NONE) {    Console::put(L"testing class-specific public methods: computational methods...\n");    Console::increaseIndention();  }  // declare the test variables  //  VectorFloat vec_input1;  VectorFloat vec_output_bark1;  VectorFloat res_vec_output_bark1;  vec_input1.assign(L"100, 500, 1000, 1500");    res_vec_output_bark1.assign(L"0.9867265582, 4.7364665824, 8.5105315107, 11.199358634");  bark_fw.compute(vec_output_bark1, vec_input1);  if (!vec_output_bark1.almostEqual(res_vec_output_bark1)) {    vec_output_bark1.debug(L"vec_output_bark1");    res_vec_output_bark1.debug(L"res_vec_output_bark1");    return Error::handle(name(), L"compute", Error::TEST, __FILE__, __LINE__);  }  // reset indentation  //  if (level_a > Integral::NONE) {    Console::decreaseIndention();  }    //--------------------------------------------------------------------  //  // 4. print completion message  //  //--------------------------------------------------------------------  // reset indentation  //  if (level_a > Integral::NONE) {    Console::decreaseIndention();  }    if (level_a > Integral::NONE) {    String output(L"diagnostics passed for class ");    output.concat(name());    output.concat(L"\n");    Console::put(output);  }    // exit gracefully  //  return true;}

⌨️ 快捷键说明

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