2010-04-13から1日間の記事一覧

GIGA BREAKのFourierスペクトル

結局ピークが一箇所に、というわけには行かなかった。 なんだろう、俺の音感を信じてその音に対応する周波数周りを詳しく調べてみるとかするか?

Scilabでwavファイルいじり

soundsecなる関数についてメモ。 Name soundsec ― generates n sampled seconds of time parameter Calling Sequence t=soundsec(n [,rate]) Parameters n : an integer, the number of seconds to generate. rate : an integer, the number of samples per …

Scilabのsoundsec関数についての誤りの訂正

t=soundsec(1)とした場合、tに格納されるのは t= 0. 0.0000454 0.0000907 0.0001361 0.0001814 0.0002268という感じの1×22050の行列。 t=soundsec(0.5)とした場合は、同様に t= 0. 0.0000454 0.0000907 0.0001361 0.0001814 0.0002268となるが、今度は1×1102…