フィルターのクリア

How to convert Simulink scope to JPEG?

48 ビュー (過去 30 日間)
Atefeh
Atefeh 2023 年 6 月 18 日
コメント済み: Atefeh 2023 年 6 月 19 日
Hi and have a good day
I have a simulink model of a medium voltage distribution network and I have some voltage and current scopes in my model.
I want to transform the scope waveform to jpeg or pgn to use it in an Image processing interface.
How can I transform them to Jpeg?
Would you mind helping me in this regard?

採用された回答

Aniketh
Aniketh 2023 年 6 月 18 日
You could do this manually by either,
  1. Open the Scope Block
  2. Click on File
  3. Select Copy to CLipboard (ctrl + C)
  4. in paint past your image
Or, run this command
ModelName % to open the model
print('-sModelName','-djpeg','model.jpeg')
or
print('-sModelName', '-dpng', 'model.png', 'r0') % Screen resolution, same as without parameter
or
print('-sModelName', '-dpng', 'model.png', 'r300') % Resolution of 300 dots per inch
  1 件のコメント
Atefeh
Atefeh 2023 年 6 月 19 日
Thanks a bunch Aniketh , but I didn't completely catch you.
Consuming I have a 2 input scope (one for voltage and the other for current), all in all I have 6 scopes and 12 waveform
How can I call the special scope ?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeView Data During Simulation についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by