Matlab rounding my values without me wanting it
Ältere Kommentare anzeigen
Hello, this basically frustrates me a bit, - if I have:
Price = 20074.5;
And I present it in my table like this:
disp(table(Price,'VariableNames',{'answer'}));
answer
_____
20075
I dont get decimals? Anyone know a way around this? I hope there can be some kind of solution without format long/short because I don't want to touch other things
- Best
Antworten (1)
Walter Roberson
am 26 Aug. 2019
1 Stimme
You get that when format short or format short g or format rat or format hex is in effect.
To work around this without changing your active format, you will need to edit the function getFloatFormats() at roughly line 427 of file toolbox/matlab/datatypes/@tabular/disp.m
6 Kommentare
Martin
am 26 Aug. 2019
Image Analyst
am 26 Aug. 2019
Why this great aversion to format long?
Martin
am 26 Aug. 2019
Walter Roberson
am 26 Aug. 2019
You could also convert the table entries to character, if you are not planning to do calculations with them.
Note that all that is affected is display of tables not what is stored in the tables. You can also write a function to display the table in whatever format you want.
Walter Roberson
am 26 Aug. 2019
function disptable(Table)
old_format = matlab.internal.display.format;
format long
disp(Table)
format(old_format)
end
Martin
am 26 Aug. 2019
Kategorien
Mehr zu Whos finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!