Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
soundsec
周波数freq
Hzで
t
秒分のサンプルベクトルを生成
(obsolete)
呼び出し手順
samples = soundsec(t) samples = soundsec(t, freq)
引数
- t
正の実数の1行1列行列, サンプルの時間長.
- freq
正の実数の1行1列行列, サンプル/秒の周波数.
デフォルト値は22050 Hz
説明
soundsec(…) is obsolete and will be removed from Scilab 6.2.x.
soundsec(t) is replaced with 0 : 1/22050 : t*(1-%eps) .
soundsec(t, freq) is replaced with 0 : 1/freq : t*(1-%eps) . |
サンプル・レートfreq
で
0から t
秒までの時間ベクトルを生成します.
サンプルは常に [0,t[
(上界を除く)に整合するように生成されます.
0 をt
または freq
に指定すると,
空の行列が返されます.
例
参照
History
バージョン | 記述 |
6.1.1 | soundsec(t,…) declared obsolete. 0 : 1/freq : t*(1-%eps) replaces it. |
Report an issue | ||
<< sound | Sound file handling | wavread >> |