フィルターのクリア

Outputting data generated from a SimEvents model

1 回表示 (過去 30 日間)
John
John 2017 年 1 月 17 日
回答済み: Chinmayi Lanka 2017 年 1 月 19 日
The attribute scope of the attached model displays a scatterplot of a time (x-axis) versus the triangular distribution of 1000 samples (y-axis). Is there some way to output the y-axis data so that I can produce a histogram of the data? Thanks in advance.
John

採用された回答

Chinmayi Lanka
Chinmayi Lanka 2017 年 1 月 19 日
You cannot directly log the data from the Attribute scope.
One possible way to extract the data is to save it as a MATLAB Figure and then extract the data from the figure.
After you save the figure, open the figure and obtain a handle to the figure. You can use following command to obtain a handle to the current figure:
>>figHandle = gcf
You can extract the y-axis data using the following commands:
>> axesHandle = figHandle.Children(8);
>> lineHandle = axesHandle.Children(1);
>> yaxesData = lineHandle.YData;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimEvents についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by