htm

simple interface for writing information to html files
332.0 次下载
更新时间 2013/8/22

查看许可证

htm is an object-oriented interface to allow simplified writing of information to html files, without worrying about the detail of html syntax.

A simple example is:
h = htm('test.html');
if h.exist; h.clear; end %deletes the file if it exists
h.start; %opens the file for writing
h.h1('I am a header');
h.text('I am some text','nl');
h.figure(gcf); h.newline;
h.table([1 2 3 ; 4 5 6]); h.newline;
h.stop;
h.show;

a list of options is available with 'help htm', detailed examples with 'help htm.demo'

引用格式

Christopher Pedersen (2024). htm (https://www.mathworks.com/matlabcentral/fileexchange/37562-htm), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2013a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 MATLAB Report Generator 的更多信息
标签 添加标签

Community Treasure Hunt

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

Start Hunting!

版本 已发布 发行说明
1.2.0.0

Various bugfixes, including improved handling of metadata.

1.0.0.0