Assigning the Values to an Element Without e representation

Hello,
I have 100 values inside of the cell array and they are completely true in terms of numeric value. What I want to see is, not 1.23e9 but 123129312383 etc. How can I inject this representation into my array? I am not talking about command window display. I want to see it in my workspace. Thank you.

 Accepted Answer

Read about vpa, format
x = 123129312383
x = 1.2313e+11
vpa(x)
ans = 
123129312383.0

More Answers (0)

Products

Release

R2020a

Asked:

on 9 Jun 2022

Commented:

on 9 Jun 2022

Community Treasure Hunt

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

Start Hunting!