Clear Filters
Clear Filters

how to store matlab results in long precision

1 view (last 30 days)
I am working with long precision values... after performing arithmetic division operation matlab is giving the rounded up result but i need to store the exact long precision value..

Answers (1)

Sean de Wolski
Sean de Wolski on 6 May 2011
as long as
class(your_result)
is 'double' it is long.
  4 Comments
Matt Tearle
Matt Tearle on 6 May 2011
or use something like fprintf('%16.13f',x) to see the result to whatever precision you want.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!