start simulink via power_analyze using variables from another workspace
1 次查看(过去 30 天)
显示 更早的评论
When I want to run a simulation within a matlab function I use
clear
clc
myFunc()
function myFunc()
R = 5;
options = simset('SrcWorkspace','current');
sim('modelName.slx', [], options); % This model has a block with parameter R
end
If I don't use
options = simset('SrcWorkspace','current');
MatLab can't find variable R, because it looks for in not in a function workspace, but in workspace of the main script.
Now, I need to calculate not a transient, but steady state solution, thus I use
power_analyze('modelName')
However, It doesn't allow me to pass "option" parameter into it to use 'power_analyze" within a function.
Is there any way to do something with it?
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Programmatic Model Editing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!