var fDesc=new Array();
fDesc[0] = "Matrixer is a piece of software especially suited for teaching econometrics and doing medium-scale applied research. It is small (in physical size, not in capabilities) and has smooth interface.
Main features:
-Linear regression
-Binomial logit and probit
-Ordered probit
-Censored (tobit) and truncated regression
-Poisson and negative binomial regressions
-Regression with multiplicative heteroskedasticity
-GARCH regression
-Regression with ARMA errors
-Box-Jenkins model (ARIMA) with dynamic forecasts
-ARFIMA-FIGARCH (long-memory models)
-(Generalized) instrumental variables estimator
-Nonparametric regression
-Nonparametric density estimation
-Quantile regression
-Simultaneous equations, 2SLS, 3SLS and FIML
-Vector autoregression
-Nonlinear regression
-Nonlinear instrumental variables method
-Method of maximum likelihood
-Descriptive statistics (mean, variance, etc.)
-Various data plots
-Visual data description (histogram, spectral density estimate, autocorrelation function)
-Table of correlations between variables
-Probability calculator (normal, Student t, chi-square, Fisher F)
-Dickey-Fuller test (additional files are needed)
-Vector and matrix operations (that is why it was called Matrixer).
-Small build-in programming language for writing macros
-Table editor
-Fast drawing of function plots according to formulas
-3D plots
-Powerful data import from text files (download examples)
-Data export to several popular formats
-History of commands";
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 = '';
}
}