Clear Filters
Clear Filters

How do I suppress the scale factor of a matrix?

16 views (last 30 days)
In matlab, if the largest element of a matrix is larger than 10^3 or smaller than 10^-3 , MATLAB applies a common scale factor for the short and long formats. How do I suppress this scale factor so that the matrix is displayed with every element as short/long format?

Accepted Answer

Image Analyst
Image Analyst on 24 Dec 2015
Try
format long g
  2 Comments
Shawn Miller
Shawn Miller on 25 Dec 2015
Although this still changes number like 0.000000001 to scientific notation rather than keep everything as original, it works well for large number.
Charles Cohen
Charles Cohen on 23 Apr 2019
format short g
Should do what you're trying to do. Suppress the scale factor and only show approx 5 digits.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!