how to use taguchi array
Show older comments
I used this code
[Ta] = TaguchiArray(3,101)
(from https://www.mathworks.com/matlabcentral/fileexchange/71628-taguchiarray) to generate taguchi array for my code:
Einf=0.1;
YF =linspace(0.85,1.1,101);
PVprice =linspace(800,1600,101);
F_bank =linspace(0,5,101);
Sys_LCOE=zeros(length(F_bank),length(PVprice),length(YF));
for ii=1:1:length(YF);
for i=1:1:length(PVprice);
for jj=1:1:length(F_bank) ;
Sys_LCOE(jj,i,ii)=LCOE(F_bank(jj),Einf, PVprice(i),YF(ii));
end
end
end
can you help me to use the Taguchi array in my code, thanks.
1 Comment
Asliddin Komilov
on 12 Oct 2020
Answers (0)
Categories
Find more on Matrices and Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!