This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! coding:utf-8 | |
| """ | |
| paired_comparison.py | |
| 一対比較評価 | |
| リーグ勝敗表を英語に訳すと league standing; game standing | |
| 順位表を英語に訳すと ranking table | |
| 組み合わせ表 pairing(対戦の)table of combination | |
| (2015/12/02) たたき台を作成 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! coding:utf-8 | |
| """ | |
| cepstrum_for_gwt | |
| GWT配列からケプストラムを算出 | |
| Created by fifi (2015/12/02 6:17) | |
| """ | |
| __version__ = '0.1' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function [ Ceps_env, Ceps_det ] = Analys_Cepstrum( arg_GWT, arg_lifter ) | |
| % アルゴリズム | |
| % http://jp.mathworks.com/help/signal/ref/rceps.html#bqrvf7e-1 | |
| % rceps は、参考文献 [2] のアルゴリズム 7.2 を実装したもので、以下の操作を行います。 | |
| % y = real(ifft(log(abs(fft(x))))); | |
| % ケプストラム領域で適切なウィンドウ処理を適用すると、復元された最小位相信号が作成されます。 | |
| % | |
| % w = [1;2*ones(n/2-1,1);ones(1-rem(n,2),1);zeros(n/2-1,1)]; | |
| % ym = real(ifft(exp(fft(w.*y)))); | |
| % |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """GaborWavelet.py | |
| ガボール変換を使ったウェーブレット変換 | |
| Version: | |
| 1.0 (copy) | |
| Reference: | |
| http://hp.vector.co.jp/authors/VA046927/gabor_wavelet/gabor_wavelet.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! coding:utf-8 | |
| """ | |
| MultiLayerPerceptron.py | |
| ## Description | |
| 多層パーセプトロンの高速化 | |
| http://aidiary.hatenablog.com/entry/20140201/1391218771 | |
| 入力層 - 隠れ層 - 出力層の3層構造で固定(PRMLではこれを2層と呼んでいる) | |
| 隠れ層の活性化関数にはtanh関数またはsigmoid logistic関数が使える |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! coding:utf-8 | |
| """ | |
| CircleRace main.py | |
| サークルレースゲーム | |
| (2015/11/20) 4:40 ver0.3 センサグラフ追加 | |
| (2015/11/19) 21:50 ver0.2 センサ追加 | |
| (2015/11/19) 4:47 ver0.1作成 | |
| Created by 0160929 on 2015/11/19 7:28 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! coding:utf-8 | |
| """ | |
| pyside-painter-skelton.py | |
| pysideでグラフィックを描画するためのスケルトンコード | |
| Created by 0160929 on 2015/11/19 7:28 | |
| """ | |
| __version__ = '0.3' | |
| import sys |