var fDesc=new Array(); fDesc[0] = "BrainCom is an artificial neural network. Utilizing backpropagation algorithm It can be used in almost all research fields such as nonlinear regression, forecasting, curve fit, pattern recognition, classification, decision making, problem optimization, time series analysis. Its user friendly environment makes it very easy to handle even by a novice. It can handle unlimited number of input vectors, inputs, outputs and hidden layer nodes. You can create your training files using your favorite spreadsheet and import them to BrainCom as csv files. All other files created are of the same format.
An ActiveX control is included to use it in your own programs to make calculations in real time."; 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 = ''; } }