Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Sound file handling > mapsound

mapsound

サウンドマップをプロット

呼び出し手順

mapsound (w,dt,fmin,fmax,simpl,rate)

引数

dt,fmin,fmax,simpl,rate

スカラー. デフォルト値 dt=0.1,fmin=100,fmax=1500,simpl=1,rate=22050;

説明

音のサウンドマップをプロット. 時間増分dt毎にFFTを行います. rate はサンプリング・レートです. 速度面を考慮してsimpl 点が収集されます. fmin および fmax が グラフィック境界として使用されます.

// まず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));
mapsound(s);
Report an issue
<< loadwave Sound file handling mu2lin >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:10:32 CET 2017