how to use taguchi array
Afficher commentaires plus anciens
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.
Réponses (0)
Catégories
En savoir plus sur Matrices and Arrays dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!