Scilab 5.5.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
analyze
サウンド信号の周波数プロット
引数
- fmin,fmax,rate,points
スカラー. デフォルト値 fmin=100,fmax=1500,rate=22050,points=8192;
説明
サンプリングレートrate
の
信号w
の周波数プロットを作成します.
データ長はpoints
である必要があります.
プロットされる周波数の最大値はfmax
,
最小値はfmin
となります.
例
// まず0.5秒分のサウンドパラメータを作成. t=soundsec(0.5); // 次にサウンドを生成. s=sin(440*t)+sin(220*t)/2+sin(880*t)/2; [nr,nc]=size(t); s(nc/2:nc)=sin(330*t(nc/2:nc)); analyze(s);
![](/docs/5.5.1/ja_JP/analyze_1.png)
Report an issue | ||
<< Sound file handling | Sound file handling | auread >> |