htm
Versión 1.2.0.0 (21,4 KB) por
Christopher Pedersen
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'
Citar como
Christopher Pedersen (2026). htm (https://es.mathworks.com/matlabcentral/fileexchange/37562-htm), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2013a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
Más información sobre MATLAB Report Generator en Help Center y MATLAB Answers.
Etiquetas
Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
