displaying answer in MATLAB

Translate This Thread From English to

Threaded View


Hi all!
       A small doubt..MATLAB usually returns answers truncated upto 4
places after the decimal point. How to increase the number of places
after the decimal? Is there any command to display the untruncated
answer?

Thanks in advance.

Re: displaying answer in MATLAB



snovite wrote:

format long e

Re: displaying answer in MATLAB




Matlab doesn't trunctate to 4 digits only. It only shows 4 digits. I
like using vpa function.
for example:

x =

    1.0472


ans =

1.04720



ans =

1.0471976

Regards,
Asim V.

Re: displaying answer in MATLAB



Thank you

Site Timeline