start simulink via power_analyze using variables from another workspace

2 次查看(过去 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 个)

类别

Help CenterFile Exchange 中查找有关 Event Functions 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by