Can i connect a matlab code to the app enviroment?

조회 수: 8 (최근 30일)
andreas christou
andreas christou 2020년 1월 31일
답변: Ganesh Regoti 2020년 2월 4일
Can i for example run my code from app designer or take as an input the variables from matlab file ?
  댓글 수: 2
Mohammad Sami
Mohammad Sami 2020년 1월 31일
yes and yes. what are you trying to do ?
andreas christou
andreas christou 2020년 1월 31일
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

댓글을 달려면 로그인하십시오.

답변 (1개)

Ganesh Regoti
Ganesh Regoti 2020년 2월 4일
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!

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by