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

📄 costshannon.h

📁 小波包分解去噪c++源程序
💻 H
字号:

#ifndef _COSTSHANNON_H_
#define _COSTSHANNON_H_

#include "costbase.h"
#include "packnode.h"

/** \file

  The documentation in this file is formatted for doxygen
  (see www.doxygen.org).


  <b>Copyright and Use</b>

   You may use this source code without limitation and without
   fee as long as you include:

<blockquote>
     This software was written and is copyrighted by Ian Kaplan, Bear
     Products International, www.bearcave.com, 2002.
</blockquote>

   This software is provided "as is", without any warranty or
   claim as to its usefulness.  Anyone who uses this source code
   uses it at their own risk.  Nor is any support provided by
   Ian Kaplan and Bear Products International.

   Please send any bug fixes or suggested source changes to:

<pre>
     iank@bearcave.com
</pre>

  @author Ian Kaplan

 */


/**
  The costshannon class extends the abstract class
  costbase with a concrete implementation of the
  costCalc function that implements the a modified
  version of the Shannon entropy function as a cost
  function.

  \author Ian Kaplan
  
 */
class costshannon : public costbase
{
protected:
  double costCalc( packnode<double> *node);

public:

  /** Calculate a modified version of the the Shannon entropy cost
      function for the wavelet packet tree, filling in the cost value
      at each node */
  costshannon( packnode<double> *node ) { traverse( node ); }
};

#endif

⌨️ 快捷键说明

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