Why is it that I cannot drag dataset to Working Data rectangle in my System Identification (SysID) GUI of R2013b in my MAC ?

1 回表示 (過去 30 日間)
Why is it that I cannot drag dataset to Working Data rectangle in my System Identification (SysID) GUI of R2013b in my MAC ?

採用された回答

MathWorks Support Team
MathWorks Support Team 2015 年 9 月 16 日
This issue is reported for R2013b version of System Identification toolbox. The development team is aware of this and they have fixed the issue for R2014b. 
Restarting of the machine may help but the reliability of this resolution may vary on the system. To workaround this issue, please see the following way of programmatically assigning a dataset to the working data rectangle: 
1. Note down the target dataset name (say, 'data1'); this is the name that appears on the source data icon.
2. Fetch a handle to the text object showing this name:
t1=findall(0,'type','text','string','data1')
3. Fetch the handle to the parent axes:
ax1=ancestor(t1,'axes')
4. Fetch a handle to the destination axes ("working data" box)
ax2=findall(0,'type','axes','tag','seles')
5. Execute the drag-drop callback manually:
iduidrop(ax1,ax2);
You can carry out other drag/drop operations by finding handles to the source (ax1) and destination (ax2) axes and then calling IDUIDROP.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Model Identification についてさらに検索

タグ

タグが未入力です。

製品


リリース

R2013b

Community Treasure Hunt

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

Start Hunting!

Translated by