Format numerical data in Table within programatic report generation
显示 更早的评论
Hello all, I am generating a report programmatically (pdf) and I'm trying to figure out a simple way to control how the numerical data is formatted when its output into the report. Basically I have a Matlab table, which contains some columns of text and some columns of numerical data. I can easily turn that into a cell array (table2cell) and then use that cell array to construct a table in the document. For example...
d; %Handle to document object
tab; %This is my matlab table of data
%Turn the table into a cell array
c = table2cell(tab);
%Construct the table
t = Table(c)
%append table to the doc
append(d,t)
% close the doc (which saves it to a file)
close(d)
The problem with this method is that numerical data in the table gets printed with full precision and thus has way too many digits (e.g., pi would show up as 3.1415926536 but I'd want something more like 3.14). Is there a simple way to specify that certain columns should be formatted in a specific way, using formatting commands such as those in sprintf()? I know I could loop over each table entry and convert each entry to a string using sprintf(), but I was hoping there was a more elegant/simple way apply numerical formatting options to the whole table at once. I'm relatively novice to programatic report generation so any help is appreciated.
Thanks! Justin
2 个评论
Jeenal Rambhia
2019-4-27
I am facing the same issue. The value in xcel sheet is 0.6 which after reading in report comes to 0.59999999999999 which is not needed. any solution to this is very helpful.
Thanks
Jan Zelenka
2021-12-17
See https://se.mathworks.com/help/rptgen/ug/format_numbers_in_a_table.html
回答(4 个)
Walter Roberson
2017-6-19
0 个投票
No, there is not. However, you might want to experiment with using appropriate round() commands on the data before putting it into the document.
Aleksander Karolczuk
2019-7-7
0 个投票
you can try to convert numeric data to string before table creation. Such as,
a=string(a);
T=table(a);
tbl = mlreportgen.dom.MATLABTable(T);
Carol Smyth
2019-9-2
0 个投票
I'm having the same issue. Did you find a solution for this?
Xudong Zhou
2019-12-5
0 个投票
i had the same issue, the number had 0.00000000000000001 added or minused in the table, i used string(number) to fix this problem. hope this can help you.
类别
在 帮助中心 和 File Exchange 中查找有关 Tables 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!