start simulink via power_analyze using variables from another workspace
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Programmatic Model Editing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!