var fDesc=new Array(); fDesc[0] = "Real Time Analyzer is an audio analyzer with FFT and n-th octave frequency analyzers and oscilloscope.
The octave analyzer can show the frequency spectrum at 12th, 6th, 3rd and full octave resolution. (A standard license supports all resolutions).
With the FFT frequency analyzer you can see the spectrum on a linear scale, which can be useful for harmonics and other analysis tasks.
Also on board is a real time oscilloscope which is always useful when analyzing audio signals."; 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 = ''; } }