Change variables in the base workspace through a Matlab Function block
28 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I'm trying to change a matrix (of type double) in the base workspace through a Matlab Function block in Simulink. To access the matrix in the base workspace within the Matlab function block, I have set the variable type in the Symbols pane of the Matlab function block to parameter data. Then I change the parameter and assign it to the base workspace with the assignin function, which I found in past solutions for the same problem.
Here is an example of my problem:
function updateBaseWorkspaceVariable(Workplan, TasksToDo)
% Modify the base workspace variable using the parameters
assignin('base', 'myVariable', Workplan + TasksToDo);
end
However when running my code and this example code I get the following error message:
Error:Function 'assignin' not supported for code generation.
Function 'MATLAB Function' (#343.124.176), line 3, column 5:
"assignin('base', 'myVariable', Workplan + TasksToDo)"
Launch diagnostic report.
Since this is a solution already used in past Matlab versions I'm wondering, if it's a problem within the Matlab version that I'm using (23a) or whether there is something I'm missing.
Thanks in advance for your help!
Kind regards
Lisa
0 件のコメント
採用された回答
Jon
2023 年 9 月 21 日
編集済み: Jon
2023 年 9 月 21 日
I would suggest using the "Interpreted MATLAB Function" block for this purpose. It doesn't need to get compiled. It is under
Simulink>User-Defined Functions in the Library Browser.
In the Parameters field MATLAB function, enter something like myfun(u).
In a directory that is on the MATLAB path, make and save an .m file called myfun(u), that has your code it in it, e.g.
function y = myfun(u)
y = u^2;
assignin('base', 'y',y);
5 件のコメント
Jon
2023 年 10 月 2 日
Hi Lisa, if you are all set, please accept an answer so others will know that an answer is available. Thanks
その他の回答 (1 件)
Harald
2023 年 9 月 21 日
Hi Lisa,
I would question the workflow of writing to the base workspace every time the block is executed. If you only need to have the variable in the workspace after the simulation, you can use model callbacks.
Best wishes,
Harald
参考
カテゴリ
Help Center および File Exchange で Naming Conventions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!