如何以可读格式显示MATLAB输出?

时间:2014-11-11 10:34:09

标签: matlab formatting

我正在使用MATLAB进行符号计算 它总是在一行中提供数学表达式的输出,这是不可读的 例如 -

  >> syms x y z  
  >> int(sin(y*cos(x)),y)  
  >> ans =   
  -cos(y*cos(x))/cos(x)

有没有办法像我在教科书中读到的那样获得可读的输出。

1 个答案:

答案 0 :(得分:2)

使用pretty

syms x y z  
s = int(sin(y*cos(x)),y);
pretty(s)