How to set the result output format of the matlab software to be the same as that in the webpage?
2 次查看(过去 30 天)
显示 更早的评论
the output format of matlab software

the format of this website: How to set the result output format of the matlab software to be the same as that in the webpage?
syms a x b c
solve(a*x^2+b*x+c==0,x)
0 个评论
采纳的回答
Walter Roberson
2022-12-6
You cannot do that.
The format you see on web pages is only available if you use LiveScript, and is not available from the command line.
2 个评论
Walter Roberson
2022-12-7
The command line is restricted to outputing text -- at most text with a little bit of HTML1 support. The output is all internally done by fprintf() to ID 1 (typical) or ID 2 (error messages)
The fancy formatting requires graphics output.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Argument Definitions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!