フィルターのクリア

How to generate a html logfile using m scripting?

1 回表示 (過去 30 日間)
Archana
Archana 2015 年 7 月 20 日
編集済み: Guillaume 2015 年 7 月 20 日
Hello,
How do I generate a html log file for one of my automation scripts? I am able to create a txt log file but i need a html log file. Any pointers would be extremely helpful. Thank you!
*hint( my log file lists some faulty blocks in model based on certain criteria)

回答 (1 件)

Guillaume
Guillaume 2015 年 7 月 20 日
編集済み: Guillaume 2015 年 7 月 20 日
An html file is just a text file where some sequences of characters have a predefined meaning.
There's no such thing as a standardised html log file format, so only you know what the format of that html log file should be. To produce a valid html (5) file, it could be as simple as writing:
<!DOCTYPE html>
<html><body><p>
before the text you normally write to the log file and
</p></body></html>
after.
Note that html is not a practical format for sharing data between computers, it's only useful for displaying things in a web browser. For sharing data between computers, you have XML (or json, or ...).

カテゴリ

Help Center および File ExchangeStructured Data and XML Documents についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by