Matlab コード:
% Performs Inner Filter Calculation using the UV absorbance spectrum.
ex_abs=absint(exabsstart:exinc:exabsend,:);
em_abs=absint(emabsstart:eminc:emabsend,:);
for i=1:length(em_abs)
for j=1:(length(ex_abs))
IFC(i,j)=ex_abs(j)+em_abs(i);
end
end
Aci = A.*10.^(0.5*IFC); %This is the IFC.
Warning: Integer operands are required for colon operator when used as index
Undefined function or variable 'IFC'.
IFC
は for ループで定義されておらず、コードはAci =
ステートメントで停止します (定義されてIFC
いないため)。IFC
ループで 定義する方法はありますか?