Package: mlreportgen.dom
Superclasses:
Formal table
Defines a formal table, which is a table that has a body and
optionally a table header, a table footer, or both. The table header,
body, and footer are mlreportgen.dom.TableHeader
, mlreportgen.dom.TableBody
,
and mlreportgen.dom.TableFooter
objects, respectively.
creates
an empty formal table. Use this constructor as the starting point
to create a formal table from scratch.formalTableObj
= FormalTable()
creates
an empty formal table having the specified number of columns. formalTableObj
= FormalTable(ncols
)
creates
a formal table with the body content specified. The constructor converts
basic MATLAB® types to corresponding DOM objects. For example,
the constructor converts character vectors to formalTableObj
= FormalTable(body
)mlreportgen.dom.Text
objects.
creates
a formal table having the specified body content and style.formalTableObj
= FormalTable(body
,styleName
)
creates
a formal table with a header and a body using the specified contents,
and an empty footer.formalTableObj
= FormalTable(header
,body
)
creates
a formal table using the specified content and style. The table has
an empty footer.formalTableObj
= FormalTable(header
,body
,styleName
)
creates
a formal table with the specified content for the body, header, and
footer.formalTableObj
= FormalTable(header
,body
,footer
)
Method | Purpose |
---|---|
Use
| Append a row of table entries to table |
Append row to table footer | |
Append row to table header | |
Use
| Copy the table |