标签: matlab formatting
我正在使用MATLAB进行符号计算 它总是在一行中提供数学表达式的输出,这是不可读的 例如 -
>> syms x y z >> int(sin(y*cos(x)),y) >> ans = -cos(y*cos(x))/cos(x)
有没有办法像我在教科书中读到的那样获得可读的输出。
答案 0 :(得分:2)
使用pretty:
pretty
syms x y z s = int(sin(y*cos(x)),y); pretty(s)