var fDesc=new Array(); fDesc[0] = "Wavelet Sound Explorer is a freeware program for Windows that lets you view sound files in the frequency/time domain. It should be of interest to students in the areas of acoustics, phonetics, and anyone interested in sound.
The aim of this project is to create an audio editor based on the continuous wavelet transform. The CWT is particularly convenient, since the original waveform can be reproduced simply by adding up the columns of the image."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }