我是靠谱客的博主 丰富小蜜蜂,最近开发中收集的这篇文章主要介绍matlab仿真图片png,Simulink仿真入门到精通(六) Simulink模型保存为图片,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

6.1 截图保存方式

Ctrl+Alt+A

6.2 拷贝试图方式

Edit→Copy Current View to Clipboard

25aed419e18c5a651ca13f7c6c1bbc42.png

6.3 saveas函数

用于保存figure或者simulink框图。

saveas(h,‘filename.ext‘)%直接将句柄h所表示的对象保存到filename.ext文件中

saveas(h,‘filename‘,‘format‘)%将句柄h所表示的对象以format的格式保存到名为filename的文件中

后缀名

格式说明

后缀名

格式说明

ai

Adobe Illustrator

pbm

Portable bitmap

bmp

Windows位图

pcx

Paintbrush 24位(不支持Simulink模型)

emf

Enhanced metafile

pdf

Portable Document Format

eps

EPS Level 1

pgm

Protable Graymap

fig

MATLAB图像(不支持Simulink模型)

png

Portable Network Graphics

jpg

JPEG image(不支持Simulink模型)

ppm

Protable Pixmap

m

MATLAB file(不支持Simulink模型)

tif

压缩的TIFF图像

示例:

>> h=get_param(gcs,‘handle‘)

h =

4.0002

>> saveas(h,‘example‘,‘png‘)

0af9e86e2f6647ac08915c85b7c40124.png

多格式保存:

formats = {‘bmp‘,‘emf‘,‘eps‘,‘pbm‘,‘pdf‘,‘pgm‘,‘png‘,‘ppm‘,‘tiff‘};

name = ‘simulink_saveas‘;

for ii = 1:length(formats)

saveas(get_param(gcs, ‘handle‘),name, formats{ii});

end

6.4 print函数

>> print(‘-s‘)

>> print(‘-smymodel‘)

>> print(‘-smymodel‘,‘-dbmp‘,‘1‘)

-d支持的格式包括‘bmp‘,‘eps‘,‘pbm‘,‘pdf‘,‘pgm‘,‘png‘,‘ppm‘,‘tiff‘。

原文:https://www.cnblogs.com/dingdangsunny/p/12246237.html

最后

以上就是丰富小蜜蜂为你收集整理的matlab仿真图片png,Simulink仿真入门到精通(六) Simulink模型保存为图片的全部内容,希望文章能够帮你解决matlab仿真图片png,Simulink仿真入门到精通(六) Simulink模型保存为图片所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部