var fDesc=new Array(); fDesc[0] = "OptiVec contains more than 3500 hand-optimized, Assembler-written functions for all floating-point and integer data types from the following fields:
1. Vectorized form of arithmetic operators and math functions.
2. Matrix operations, e.g.: multiplication, inversion, LU decomposition, singular value decomposition, Cholesky, eigenvalues.
3. Fast Fourier Transform techniques for efficient convolutions, correlation analyses, spectral filtering, etc., both one- and two-dimensional.
4. Curve fitting for a wide range of model functions from simple linear regression to non-linear models with multiple data sets.
5. Statistics.
6. Comparisons (e.g., as building blocks for time series analysis).
7. Analysis (derivatives, integrals, extrema, interpolation).
8. Graphical representation of data in Cartesian coordinates.
9. Complex number math, both in cartesian and polar format.
The vectorized implementation in Assembler makes OptiVec functions, on the average, 2-3 times faster than compiled source code of the same functionality. In many instances, the numerical accuracy is improved as well.
This version is for the Embarcadero / Borland series of Delphi (RAD Studio) compilers, any version from Delphi 7 to XE series and 10.x (Seattle / Berlin / Tokyo / Rio / Sydney), both for 32-bit and for 64-bit (the latter requires Delphi XE2 or higher)."; 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 = ''; } }