how to use taguchi array
이전 댓글 표시
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
Asliddin Komilov
2020년 10월 12일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!