https://advanpix.com
Multiprecision Computing Toolbox for MATLAB
multiprecision computing toolbox, extended precision, arbitrary precision, ill-conditioned, matlab precision, precision matlab, quadruple, multiple precision, IEEE 754-2008, cancellation error, eigenvalues
Toolbox for arbitrary precision computations in MATLAB. Check solution accuracy, compute sensitive eigenvalues, solve ill-conditioned problems.
Multiprecision Computing Toolbox for MATLAB Multiprecision Computing Toolbox for MATLABHomeDownloadDocumentation User’s ManualFunction ReferenceVersion History PurchaseSupportBlogContactSubscribeMultiprecision Computing Toolbox for MATLABThe Multiprecision Computing Toolbox is the MATLAB extension for computing with arbitrary precision.The toolbox equips MATLAB with a new multiple precision floating-point numeric type and extensive set of mathematical functions that are capable of computing with arbitrary precision.The multiprecision numbers and matrices can be seamlessly used in place of the built-in double entities following standard MATLAB syntax rules. As a result, existing MATLAB programs can be converted to run with arbitrary precision with minimal changes to source code.Quadruple precision computations (compliant with IEEE 754-2008) are supported as a special case.FunctionalityToolbox provides a comprehensive library of computational routines covering the following areas:Real and complex numbers, full and sparse matrices, multidimensional arraysElementary and special mathematical functionsSolvers for system of linear equations (including direct and iterative sparse solvers)Matrix analysis functions and factorizationsEigenvalues and eigenvectors including generalized and large-scale problems.Singular value decompositionSolvers for system of nonlinear equations (fsolve with Levenberg-Marquardt and other trust region methods)Numerical integration (including adaptive quadgk and full set of Gaussian quadrature)Optimization and polynomialsOrdinary differential equations solversData analysis and Fourier transformNumber theory functionsPlease visit the Function Reference page for a complete list of supported functions and User’s Manual for usage examples.PerformanceThere is a common misbelief that arbitrary precision computations are very slow. Indeed, mainstream numerical software packages are largely responsible for this false perception. Their codes were written decades ago using textbook algorithms, without proper optimization nor updates for the latest hardware.We are determined to change the situation by developing high-performance numerical libraries for computations with arbitrary precision, tuned for modern CPU architectures, multi-core parallelism and relying on recent state-of-the-art algorithms. All combined makes our toolbox order(s) of magnitude faster compared to famous competitors:Matrix factorization in quadruple precision (500×500, 34 digits)Factorization Timing (sec)Speed-up (times) MATLAB (VPA) Maple MathematicaAdvanpixOver VPAOver MapleOver MathematicaA & B are pseudo-random real matrices (500×500):[L,U] = lu(A) 249.13 85.1615.120.47534.38 182.6732.42[Q,R] = qr(A) 514.34 458.8644.393.08167.25 149.2114.43[U,S,V] = svd(A) 5595.26 4317.40376.949.57584.62 451.1139.38 S = svd(A) 2765.11 645.6056.962.98927.17 216.4819.10[V,D] = eig(A) 21806.30 6060.90584.8633.75646.05 179.5717.33lambda = eig(A) 3384.58 7822.30205.4623.55143.70 332.118.72 [V,D] = eig(A,B) n/a 11358.00928.89112.05∞101.36 8.29 lambda = eig(A,B) n/a 5273.00510.8060.37∞87.34 8.46 Basic mathematical functions in quadruple precision (2000×2000, 34 digits)Function Timing (sec)Speed-up (times)MATLAB (VPA)MapleMathematicaAdvanpixOver VPAOver MapleOver MathematicaPower & exponential:EXP107.34756.144.540.12886.34 6243.9037.49LOG1161.18593.986.610.235133.40 2625.9129.21LOG101438.91639.4611.130.245958.23 2647.8846.09LOG21442.71643.1711.080.255789.35 2580.9444.48SQRT28.75427.402.600.27105.74 1571.90 9.55 Trigonometric:SIN85.28736.896.070.15570.80 4932.3340.62COS78.96513.736.100.15516.44 3359.9239.89TAN1261.92844.058.910.177277.514867.6451.37ASIN105.121181.8312.390.39266.40 2995.0131.39ACOS100.491330.9923.100.39257.55 3411.0359.19ATAN131.921039.555.710.14974.28 7677.6442.17SEC1466.09778.148.000.188199.594352.0144.76CSC1503.75793.878.350.188490.954482.6047.13COT1511.671014.7610.460.207728.365187.9553.48Selected special:gamma2491.817734.53228.350.763266.2313018.78299.31erf104.11321.20125.880.16669.96 2163.26 810.02bessely(0,x)7855.7014923.53250.380.839482.9818014.89302.25bessely(1,x)7302.2914964.26267.940.838786.2918005.36322.39besselj(0,x)7273.299998.6090.540.759684.8113313.72120.55besselj(1,x)5987.6710153.1391.890.748077.2513696.38123.96More detailed comparison with VPA: Symbolic Math Toolbox (VPA) vs. Multiprecision Computing Toolbox.In some cases, the speed of quadruple precision computations in toolbox is comparable (or even higher) to double precision routines of MATLAB. Eigendecomposition of banded matrices is one of the examples.DemosComputation of eigenvalues and especially eigenvectors is one of classic problems requiring extended-precision. The main reason is that eigenproblem might be ill-conditioned and hard to compute even when matrix itself is well-conditioned with respect to inversion.The two plots below show the eigenvalues of the Grcar matrix computed by MATLAB and by the toolbox, respectively. The eigenvalues of the Grcar matrix are displayed in black, and the eigenvalues of the transposed matrix – in red. In theory they should coincide: Figure 1. MATLAB is unable to generate accurate results using the double precision. Figure 2. Correct eigenvalues computed with quadruple precision by the toolbox.Although condition number of the Grcar matrix is low, cond(A) = cond(A') = 3.61, MATLAB’s double precision routines suffer from accuracy loss. See for details Computing Eigenvalues in Extended Precision.ApplicationsThe toolbox removes MATLAB’s inherent limitation on computing precision, thus enabling the user to solve a variety of important problems previously impossible to handle with MATLAB:Allows solving of numerically unstable problems (e.g. computing eigenvalues, matrix functions, solving ill-conditioned matrices, algebraic Riccati equations, differential equations using RBF methods, finding roots, analyzing control system stability by solving Lyapunov and Sylvester equations, etc. etc.).Enables checking of accuracy of results by re-running existing MATLAB programs in extended precision.Minimizes rounding and cancellation errors in computations (e.g. summation of series with alternating signs, oscillatory integrals, etc.).Allows computing of reference constants and coefficients of algorithms with high accuracy.Key FeaturesComprehensive set of mathematical functions. Multiprecision Computing Toolbox supplies arbitrary-precision analogs to the majority of the functions listed in the famous MATLAB Top 500, from simple arithmetic operations to advanced numerical algorithms (e.g. fft, eig, svd, quadgk, ode45, etc.), and adds original functionality not available in MATLAB. Please visit the Function Reference page for a complete list of supported routines.Easy porting of existing MATLAB programs to arbitrary precision. The Toolbox employs an operator overloading technique which allows easy porting of pre-existing programs to arbitrary precision – with little or no modifications to the source code. In most cases the conversion is automatic, and no extra action is required by the user. For further examples, visit User’s Manual.Algorithms. Multiprecision Computing Toolbox stands on the shoulders of giants – we implement only state-of-the-art algorithms designed for parallelism and high-performance. Usually we convert algorithms from LAPACK to precision-independent C++ code with various optimizations for vector and multi-core execution. Every routine in toolbox is a meta-algorithm, which analyses the input matrix and applies best suitable method for its type (symmetric/Hermitian, positive definite, triadiagonal, band, triangular, etc.). Thus, for example, we use multi-shift QR for unsymmetric eigen-decomposition whereas symmetric/Hermitian or tridiagonal problems are solved by MRRR or Divide & Conquer algorithms.High-performance. Our product is developed using compiled programming languages C/C++ and Assembler with only a thin M-file interface for smooth integration to MATLAB. Toolbox is specifically optimized for parallel execution on multi-core CPUs.Ease of access and user-friendliness. We provide comprehensive instructions and step-by-step installation help, making it easy to install and use the Multiprecision Computing Toolbox. Toolbox is available for 64-bit versions of GNU Linux, Microsoft Windows, and Apple Mac OS. The Quick Start User’s Manual, Function Reference, and our frequently updated Blog provide examples, tips, and announcements about our product. Reviews“While it is rather surprising that MATLAB does not have a native engine for handling arbitrary-precision computations, Advanpix more than fills this gap. The toolbox has a very intuitive syntax, is well documented and is therefore straightforward to use with a fairly gentle learning curve. In my research group we have used Advanpix to tackle a range of different problems in areas such as control theory (involving solution of complicated systems of nonlinear algebraic equations), integration of stiff ODE systems and evaluation of special functions. In all these cases Advanpix turned out to be the key enabler making it possible for us to solve problems which otherwise could not be cracked using standard tools.The part of the entire product which I find the most impressive is the customer support. Pavel Holoborodko is very prompt, efficient and professional. He constantly seeks to expand the multiprecision capability of Advanpix to different MATLAB functions and toolboxes. As an example, on my request, he quickly developed the multiprecision versions of some specialized functions in the control toolbox. As we are based on different continents, his responses and solutions usually arrive overnight, if not sooner. This all the more impressive given that the company seems to have limited human resources.I consider Advanpix a very solid piece of scientific computing software and offer it my highest recommendation.” Bartosz Protas Department of Mathematics & Statistics McMaster University Hamilton, Ontario, CANADA L8S 4K1 www.math.mcmaster.ca/bprotas“Some relative orbit determination problems require solving a high-dimensional eigenproblem. The Multiprecision Computing Toolbox environment with quad-precision allowed accurate resolution of many more eigenvalues when compared with standard double-precision computations. Advanpix provided a versatile and easy-to-use computational tool to satisfy our needs. I highly recommend their product when high-precision multi-digit computations are required.” Prof. Brett Newman Dept. of Mechanical and Aerospace Engineering Old Dominion University www.odu.edu“As far as I know, this is the fastest multiple-precision toolbox for MATLAB. In particular, the quadruple precision (binary128) arithmetic is surprisingly fast, which is comparable to the double precision (binary64) arithmetic. As improbable as it may sound, it is true, also for matrix computations on multi-core systems.The implementation of numerical algorithms in the toolbox is stable and highly reliable. Therefore, it is available for professional use such as verification of computed results by our developed methods, numerical results in scientific paper and so forth.The user support is also satisfactory. The toolbox developer kindly replies to e-mails very quickly. I hope it will continue far into the future.” Dr. Takeshi Ogita Director of the Center for Information Science Associate Professor at Division of Mathematical Sciences, Tokyo Woman’s Christian University www.math.twcu.ac.jp/ogita/“My experience with Advanpix Toolbox has always been smooth and nice. First of all, the learning curve is very gentle when you already know the standard MATLAB language. I think this is one of the main advantages of this software.I hope to underline also the fact that the main developer of this Toolbox is simply unstoppable. The new features and updates appear with such a speed that the users get tired to download the new versions. Imagine, you are just debugging your poor program and meanwhile already two new versions of Advanpix appear with 36 new features and 10x speed improvement at each update. When I look at the version history I feel depressed and want to change immediately the profession… It is simply impossible to code like Pavel. Sometimes I suspect that “Pavel Holodoborodko” is a nickname (like Nicolas Bourbaki in Mathematics) for a group of coders who work 26h per day. The productivity of this person remains a mystery to me.” Denys Dutykh www.denys-dutykh.com/ LAMA UMR #5127 Laboratoire de Mathématiques Université de Savoie Campus Scientifique 73376 Le Bourget-du-Lac, France“After using the Advanpix toolbox for a couple of weeks I am pretty convinced that this add-on to MATLAB is a must for everyone having to solve problems at the edge of precision. It is not for the final result, which in Physics is usually significant with a few digits (ten at most for the best known observables like the fine structure constant) that multiple precision is important; but it often occurs that in the course of a complex calculation, involving matrix analysis and/or solution of multidimensional differential equations, extended precision can be crucial to get the right final result.In a problem I considered recently, expansion into a series of Legendre polynomials for a highly oscillating polynomial (up to 1000 roots in the unit interval), double precision runs into trouble very early and quadruple or even higher precision is essential to get to the right result. The choice is obviously to be made among floating point high-precision calculations and symbolic, in principle exact, approaches. Running time is one important aspect which has a great impact on the decision. Advanpix is really fast and together with reliability this fact makes it a great piece of modern numerical software.” Enrico Onofri University of Parma, Parma, Italy http://www.pr.infn.it/~enrico.onofri“It has been both a pleasure and privilege to work with Advanpix/Pavel. Pavel built a custom multiprecision SDK for use with remastero’s algorithms. The quality of the SDK far exceeded our expectations in every metric we can think of (memory, CPU performance, accuracy, robustness, and also with the ease of integration). Pavel delivered on time and went above and beyond when it came to support. We cannot recommend Advanpix high enough and we look forward to the next opportunity to collaborate.” — Author remastero PGGB – Offline Remastering (remastero.com) Download Trial Ver. 5.3.2.15744 Latest UpdatesSeptember 20, 2024 5.3.2.15744 August 20, 2024 5.3.1.15613 July 23, 2024 5.3.0.15577 July 16, 2024 5.2.9.15568 Full changelogBeing Used At: Copyright © 2006 - 2024 Advanpix.com. Commerce Disclosure.
en
us
en-US
1730455141
https://advanpix.com
Hlela isayithi yakho?
Wentani?