音声の時系列特性
ExampleDataには,1970年4月13日にアポロ13号の乗組員がヒューストンの宇宙管制センターに酸素タンクの爆発を報告する,有名な録音が含まれている.
In[1]:=
audio = ExampleData[{"Sound", "Apollo13Problem"}, "Audio"]
power(出力)とloudness(音の大きさ)は,何らかの音声出力があったことを示す.
In[2]:=
{power, loudness} =
AudioLocalMeasurements[audio, {"Power", "Loudness"}, "List"]
Out[2]=
In[3]:=
ListLinePlot[{power, loudness}, PlotRange -> All,
PlotLegends -> {"Power", "Loudness"}]
Out[3]=
powerとloudnessの時系列についての統計量の概要を計算する.
In[4]:=
summary[ts_] := {Min[ts], Mean[ts], Median[ts], Max[ts]};
In[5]:=
TableForm[{summary[power], summary[loudness]},
TableHeadings -> {{"Power", "Loudness"}, {"Min", "Mean", "Median",
"Max"}}]
Out[5]//TableForm=