フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

I want to run it for 5 times for different 'Current' so I manually change the value. So now I want to make it automatic

1 回表示 (過去 30 日間)
arvind ramasamy
arvind ramasamy 2017 年 11 月 29 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Amp=1;
while(exit)
i=i+1;
tic
%reference = S(i);
%
fprintf(eLOAD_instr, 'curr %2f',Amp) % Setpoint to eLOAD
pause(0.1)
%
%%Get Data from ELR9000
% Setpoint, Current, Voltage, Power
Data_eLOAD_string = query(eLOAD_instr, 'curr?; measure:current?; measure:voltage?; measure:power?');
% Write Data_string in vector of type struct
Data_eLOAD_string_vec{i} = Data_eLOAD_string;
toc
%
while(toc < T_smpl) % define Sampling time (0.1s)
;
end
end
Set_pointStr = int2str(Amp)
save ( ['Test_',Set_pointStr,'_Amp' '.mat'], 'U_eLOAD','I_eLOAD')
in this code now I want to run it for 5 times for different 'Current' so I manually change the value. So now I want to make it automatic
  1 件のコメント
Sonam Gupta
Sonam Gupta 2017 年 12 月 7 日
Where are you setting the different current value? If it is Amp, You can define the values in array and then use a for loop iterating over the elements of the array.

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by