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

📄 mvec_11.cc

📁 这是一个从音频信号里提取特征参量的程序
💻 CC
字号:
// file: $isip/class/math/vector/MVector/mvec_11.cc// version: $Id: mvec_11.cc,v 1.12 2002/02/27 20:52:59 alphonso Exp $//// isip include files//#include "MVectorMethods.h"#include "MVector.h"// method: pow//// arguments://  MVector<TScalar, TIntegral>& this: (output) class operand//  const MVector<TScalar, TIntegral>& v: (input) operand//  double value: (input) operand//// return: a boolean value indicating status//// this method does a power operation of each input vector element with the// input scalar and stores the result in this vector//template<class TScalar, class TIntegral>boolean MVectorMethods::pow(MVector<TScalar, TIntegral>& this_a,			    const MVector<TScalar, TIntegral>& v_a,			    double value_a) {  if (!this_a.setLength((long)v_a.length_d, false)) {    v_a.debug(L"v_a");    this_a.debug(L"this_a");    return Error::handle(name(), L"pow", Error::NOMEM, __FILE__, __LINE__);  }    // loop through each element  //  long last_index = (long)this_a.length_d;  for (long index = 0; index < last_index; index++) {    this_a.v_d[index].pow(v_a.v_d[index], (TIntegral)value_a);  }  // exit gracefully  //  return true;}// explicit instantiations//template booleanMVectorMethods::pow<ISIP_TEMPLATE_TARGET>(MVector<ISIP_TEMPLATE_TARGET>&, const MVector<ISIP_TEMPLATE_TARGET>&, double);// method: max//// arguments://  const MVector<TScalar, TIntegral>& this: (output) class operand//  long& max_pos: (output) position of maximum//// return: a TIntegral value containing the maximum value in the vector//// this method finds the maximum value in the vector//template<class TScalar, class TIntegral>TIntegral MVectorMethods::max(const MVector<TScalar, TIntegral>& this_a,			      long& max_pos_a) {    // check Vector dimension  //   long last_index = (long)this_a.length_d;  if (last_index <= (long)0) {    this_a.debug(L"this_a");        return Error::handle(name(), L"max", Error::ARG, __FILE__, __LINE__);  }    // initialize  //   max_pos_a = (long)0;  TIntegral max_val = (TIntegral)this_a.v_d[(long)0];    // loop over data  //   for (long index = 0; index < last_index; index++) {    if ((TIntegral)this_a.v_d[index] > max_val) {      max_val = this_a.v_d[index];      max_pos_a = index;    }  }    // return the value  //   return max_val;}// explicit instantiations//template ISIP_TEMPLATE_T1MVectorMethods::max<ISIP_TEMPLATE_TARGET>(const MVector<ISIP_TEMPLATE_TARGET>&, long&);// method: maxMag//// arguments://  const MVector<TScalar, TIntegral>& this: (output) class operand//  long& max_pos: (output) position of maximum//// return: a double value containing the maximum magnitude in the vector//// this method finds the element in the input vector whose magnitude is// maximum amongst all elements in the vector//template<class TScalar, class TIntegral>double MVectorMethods::maxMag(const MVector<TScalar, TIntegral>& this_a,				 long& max_pos_a) {    // check Vector dimension  //   long last_index = (long)this_a.length_d;  if (last_index <= (long)0) {    this_a.debug(L"this_a");    return Error::handle(name(), L"maxMag", Error::ARG, __FILE__, __LINE__);  }    // initialize  //   max_pos_a = (long)0;  double abs_val = Integral::abs((TIntegral)this_a.v_d[0]);  double max_val = abs_val;    // loop over data  //   for (long index = 1; index < last_index; index++) {    abs_val = Integral::abs((TIntegral)this_a.v_d[index]);    if (abs_val > max_val) {      max_val = abs_val;      max_pos_a = index;    }  }    // return the value  //   return max_val; }// explicit instantiations//template doubleMVectorMethods::maxMag<ISIP_TEMPLATE_TARGET>(const MVector<ISIP_TEMPLATE_TARGET>&, long&);// method: min//// arguments://  const MVector<TScalar, TIntegral>& this: (output) class operand//  long& min_pos: (output) position of minimum//// return: a TIntegral value containing the minimum value in the vector//// this method finds the minimum value in the vector//template<class TScalar, class TIntegral>TIntegral MVectorMethods::min(const MVector<TScalar, TIntegral>& this_a,			      long& min_pos_a) {    // check Vector dimension  //   long last_index = (long)this_a.length_d;  if (last_index <= (long)0) {    this_a.debug(L"this_a");        return Error::handle(name(), L"min", Error::ARG, __FILE__, __LINE__);  }    // initialize  //   min_pos_a = (long)0;  TIntegral min_val = (TIntegral)this_a.v_d[(long)0];    // loop over data  //   for (long index = 0; index < last_index; index++) {    if ((TIntegral)this_a.v_d[index] < min_val) {      min_val = this_a.v_d[index];      min_pos_a = index;    }  }    // return the value  //   return min_val;}// explicit instantiations//template ISIP_TEMPLATE_T1MVectorMethods::min<ISIP_TEMPLATE_TARGET>(const MVector<ISIP_TEMPLATE_TARGET>&, long&);// method: minMag//// arguments://  const MVector<TScalar, TIntegral>& this: (output) class operand//  long& min_pos: (output) position of minimum//// return: a double value containing the minimum magnitude in the vector//// this method finds the element in the input vector whose magnitude is// minimum amongst all elements in the vector//template<class TScalar, class TIntegral>double MVectorMethods::minMag(const MVector<TScalar, TIntegral>& this_a,				 long& min_pos_a) {    // check Vector dimension  //   long last_index = (long)this_a.length_d;  if (last_index <= (long)0) {    this_a.debug(L"this_a");        return Error::handle(name(), L"minMag", Error::ARG, __FILE__, __LINE__);  }    // initialize  //   min_pos_a = (long)0;  double abs_val = Integral::abs((TIntegral)this_a.v_d[0]);  double min_val = abs_val;    // loop over data  //   for (long index = 1; index < last_index; index++) {    abs_val = Integral::abs((TIntegral)this_a.v_d[index]);    if (abs_val < min_val) {      min_val = abs_val;      min_pos_a = index;    }  }    // return the value  //   return min_val; }// explicit instantiations//template doubleMVectorMethods::minMag<ISIP_TEMPLATE_TARGET>(const MVector<ISIP_TEMPLATE_TARGET>&, long&);// method: memSize//// arguments://  const MVector<TScalar, TIntegral>& this: (output) class operand//// return: size of object//// this method returns the size of the object in memory//template<class TScalar, class TIntegral>long MVectorMethods::memSize(const MVector<TScalar, TIntegral>& this_a) {  // start with the length & capacity  //  long bytes = this_a.length_d.memSize() + this_a.capacity_d.memSize();    // add each element  //  for (long i = 0; i < this_a.capacity_d; i++) {    bytes += this_a.v_d[i].memSize();  }    // return the number  //  return bytes;}// explicit instantiations//template longMVectorMethods::memSize<ISIP_TEMPLATE_TARGET>(const MVector<ISIP_TEMPLATE_TARGET>&);

⌨️ 快捷键说明

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