Can i connect a matlab code to the app enviroment?

10 vues (au cours des 30 derniers jours)
andreas christou
andreas christou le 31 Jan 2020
Can i for example run my code from app designer or take as an input the variables from matlab file ?
  2 commentaires
Mohammad Sami
Mohammad Sami le 31 Jan 2020
yes and yes. what are you trying to do ?
andreas christou
andreas christou le 31 Jan 2020
I have the follwing main matlab code
load('Load_Profiles')
ts=1;
num_iter=2 ;
% SV_vector=zeros(numb_SV+3,num_iter);
PQtotal=struct('P',zeros(21,num_iter),'Q',zeros(21,num_iter));
PQtotal_LV=struct('P',zeros(20,num_iter),'Q',zeros(20,num_iter));
for i=1:num_iter
cd SE-MV
[SV_vector(:,i), line_loading(i,:), PQtotal]=SE_MV(Meas,ts,PQtotal,i);
cd ..
Meas_Bus=Meas(14).signals.values;
Voltage=SV_vector(979:981,i);
[Meas_LV]=LV_profile(Meas_Bus);
load('Load_profile_LV');
cd SE-LV
[SV_vector_LV(:,i)]=SE_LV(Meas_LV,ts,Voltage);
%
cd ..
%
%
ts=ts+1;
i
end
and i want to put as an input the num_iter

Connectez-vous pour commenter.

Réponses (1)

Ganesh Regoti
Ganesh Regoti le 4 Fév 2020
Hi,
As per my understanding, you want to load data from mat file to appdesigner. load function must work for you
var=load('example.mat');
If you want to load data from any workspace into appdesigner code, then evalin function works fine.
v = evalin('base', 'var');
Here are the links you can refer to
Hope this helps!

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by