htm

simple interface for writing information to html files

現在この提出コンテンツをフォロー中です。

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 (2026). htm (https://jp.mathworks.com/matlabcentral/fileexchange/37562-htm), MATLAB Central File Exchange. に取得済み.

カテゴリ

Help Center および MATLAB AnswersMATLAB Report Generator についてさらに検索

一般的な情報

MATLAB リリースの互換性

  • すべてのリリースと互換性あり

プラットフォームの互換性

  • Windows
  • macOS
  • Linux
バージョン 公開済み リリース ノート Action
1.2.0.0

Various bugfixes, including improved handling of metadata.

1.0.0.0