hmatrixのSTVectorとVectorとの部分更新速度比較
ノイズの中に信号を埋め込んで、その信号が検出できるかどうかのテストを行うことを考える。その場合、データに信号を埋め込むことを行うので、データ列の一部分に変更することになる。そこで、データ列の一部...
22 search resultsShowing 1~20 results
ノイズの中に信号を埋め込んで、その信号が検出できるかどうかのテストを行うことを考える。その場合、データに信号を埋め込むことを行うので、データ列の一部分に変更することになる。そこで、データ列の一部...
高速処理が必要なデータ解析ソフトウェアパッケージを開発している関係でいろいろなデータ列の処理速度を調べている。ベクトル演算や行列演算処理が整っているhmatrixを用いることが多く、そのVect...
Data.Vector型をリストのようにパターンマッチできないかなと調べていた時に、2ちゃんねるのプログラム技術板に以下のようなコメントを目にした。 このヒントに基づいて、以下のように、データ列...
sudo port select --list gcc sudo port select gcc mp-gcc48
gtk周辺のモジュールをインストールするために、 gtk2hs-buildtoolsのインストールをやっておく必要がある。 依存関係で、alex,happyも入れておく。 gtkモジュールコンパ...
http://www.haskell.org/cabal/download.html からsourceをダウンロード。(今回の場合、cabal-install-1.20.0.3.tar.gz) ...
http://www.haskell.org/ghc/からMac OS用のバイナリファイルを持ってくる。 その後ファイルを解凍して、ghc-7.8.3のディレクトリで ./configure -...
o git commitしたコミットをやり直す。 あるファイルを修正している途中に、依存関係があるファイルのコミットが行われ、それを反映したい時、今あるファイルの修正をいったんgit commi...
`matlab RA= linspace(0,24,37); DEC = linspace(-90,90,19); ind = 1; for indRA=1:length(RA) for ind...
git init git add git commit -m 'hoge' git remote add origin git@github.com:usrname/hoge.git git p...
gcc filterFunctions.c -c でオブジェクトファイルを作る。 ar r libFilter.a filterFunction1.o filterFunction2.o でライ...
$ weechat で立ち上げてから、 weechatのチャット欄で /server add haskell chat.freenode.net -autoconnect とやると、haskel...
//コア部分 // N : number of coefficients // h(n) : filter coefficients, n = 0,…N-1 // x(n) : stored i...
// N : number of coefficients // h(n) : filter coefficients, n = 0,…N-1 // x(n) : stored input da...
// N : number of coefficients // h(n) : filter coefficients, n = 0,…N-1 // x(n) : stored input da...
// N : number of coefficients // h(n) : filter coefficients, n = 0,…N-1 // x(n) : stored input da...
jbname = 'test'; detectors = {'H1','L1','V1','LCGT'}; phiV=[-180:4:180]; thetaV=[-90:4:90]; outda...
Nid = 1; RA= linspace(0,24,37); DEC = linspace(-90,90,19); for indRA=1:length(RA) for indDEC = 1:...
cd /opt/workspace/ridge/hpc filelist = {'TKsnburst','TK11-B12X1B10','TK11-B12X5B01','TK11-B12X5B1...
clear all; width = 800; height = 600; set(gcf,'PaperPositionMode','auto'); pos=get(gcf,'Position...
22 search resultsShowing 1~20 results
Qiita is a knowledge sharing service for engineers.