Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用以下命令将 simulink 图打印到 SVG:
print -dsvg -sYYYY myfile.svg
其中 YYYY 是我的 simulink 图的名称,但它会将图逆时针旋转 90 度!
有没有办法做到这一点,所以它不会被旋转?
(或者,以编程方式将其顺时针旋转 90 度,但这似乎是一种完全的痛苦,因为我什至无法手动做到这一点。)
orient在调用之前尝试使用命令print:
orient
print
orient('YYYY', 'portrait') print -dsvg -sYYYY myfile.svg
从逻辑上讲,您会认为将横向指定为方向可以解决问题,但输出仍然逆时针旋转 90 度。将其设置为纵向似乎可行。