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

📄 timeseries_test.java

📁 java的小波分析程序
💻 JAVA
字号:

import wavelets.*;
import wavelet_util.*;
import dataInput.*;

/**
<p>
  Test the Inplace Haar wavelet algorithm with a financial
  time series, in this case, the daily close price for
  Applied Materials (symbol: AMAT).
<p>
  The code below reads the time series and generates outputs
  the coefficients and the wavelet spectrum for graphing.

 */
class timeseries_test {

  public static void main( String[] args ) {
      String timeSeriesFile = "amat_close";  // Applied Materials Close prices
      tsRead data = new tsRead( timeSeriesFile );
      //
      // The wavelet algorithms work on arrays whose length is a power
      // of two.  Set the length to the nearest power of two that is
      // less than or equal to the data length.
      //
      int len = data.getSize();
      if (len > 0) {
	int newSize = binary.nearestPower2( len );
	data.setSize( newSize );
	double[] vals = data.getArray();
	
	if (vals != null) {
	  gnuplot3D pts;
	  
	  wavelets.inplace_haar haar = new wavelets.inplace_haar();
	  haar.wavelet_calc( vals );
	  haar.order();
	  pts = new gnuplot3D(vals, "coef" );
	  haar.inverse();
	  haar.wavelet_spectrum( vals );
	  pts = new gnuplot3D(vals, "spectrum");
	}
      }
  } // main

}

⌨️ 快捷键说明

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