How do I set MATLAB to read an input with more than 15 decimal places?

15 views (last 30 days)
I have an input argument that ranges from 4 to 17 decimal places. When I try to compute the argument, MATLAB works fine for upto 16 decimal places(I get my output almost immediately), but when I enter the argument with 17 decimal places, it goes on 'Busy' forever(15 minutes till I lost my patience). Could it be something wrong with my code or should I just wait longer?

Accepted Answer

Walter Roberson
Walter Roberson on 2 Nov 2015
IEEE 754 Double Precision is limited to 53 bits precision, which comes out between 15 and 16 decimal places. You cannot use ordinary MATLAB Double Precision to compute 17 decimal places. You would need to use a high precision library of some kind.
The MATLAB Symbolic Toolbox can handle more than 16 digits.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!