6.1 sound() で音を鳴らす

sound() は Mathematica の ListPlay[] に相当する。
  samplerate=44100;
  Tmax=1;
  freq=440;
  t=0:1/samplerate:Tmax;
  sampledata=sin(2*pi*freq*t);
  sound(sampledata,samplerate);



桂田 祐史