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