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 天)

采纳的回答

MathWorks Support Team
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 CenterFile Exchange 中查找有关 Linear Model Identification 的更多信息

标签

尚未输入任何标签。

产品


版本

R2013b

Community Treasure Hunt

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

Start Hunting!

Translated by