Setting Look Up Table parameter 'Table' from GUI using set_param

조회 수: 3 (최근 30일)
Shyam
Shyam 2013년 4월 14일
댓글: jason miller 2021년 2월 23일
I want to set the LUT parameter 'Table' frm a GUI:
Lookup Table (n-D): ..... simulink library block
Table data: wArray
Breakpoints 1: ........
I am writing the following code in edit callback in GUI:
wNewVal = str2double(get(hObject,'String'));
w=wNewVal;
wArray=[w w 0 0 -1*w -1*w 0 0]
set_param('SDH/Tp/w','Table','wArray')
i can run the code without any errors but if i run my simulation..i get the following error:
Error evaluating parameter 'Table' in 'SDH/Tp/w'
Caused by:
Undefined function or variable 'wArray'.
See this also:
get_param('SDH/Tp/w','Table')
ans =
wArray

채택된 답변

Kaustubha Govind
Kaustubha Govind 2013년 4월 16일
The code in the GUI Callback creates variables in the callback function workspace. Do you run the simulation from the function or independently? If you run it using the SIM command from the function, use this syntax:
options = simset('SrcWorkspace','current','DstWorkspace','current');
sim('mymdl', [0 duration], options)
Otherwise, make sure that the variable 'wArray' is created in the base workspace, because that's where the model looks for it:
wNewVal = str2double(get(hObject,'String'));
w=wNewVal;
wArray=[w w 0 0 -1*w -1*w 0 0];
assignin('base', 'wArray', wArray);
set_param('SDH/Tp/w','Table','wArray')
  댓글 수: 2
Shyam
Shyam 2013년 4월 16일
i had done the second option and its working fine...thanks
jason miller
jason miller 2021년 2월 23일
I have a simiar issue... How do you create a variable in the base workspace within the app?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

SENTHILKUMAR
SENTHILKUMAR 2015년 10월 27일
For the above question, How will you set the values for Breakpoints. When I try to do that in a same way which was mentioned. I am getting the following error
Lookup_n-D block does not have a parameter named 'Breakpoints'.
It recognizes tabledata parameter but not breakpoints parameter. How to overcome that?
  댓글 수: 3
Kurt Stewart
Kurt Stewart 2019년 1월 14일
Thanks that works perfect
Kurt Stewart
Kurt Stewart 2019년 1월 14일
'TableData' is the name for the table data if people are wondering

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Model, Block, and Port Callbacks에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by