私はparfor loop
このようなものを持っています:
parfor i=1:20
for j=1:5
%% Some codes
[~,~,~,AUC]=perfcurve(testTargets,testOutputs,'1');
AUC_T(i)=AUC;
end
%% averaging between AUC_Ts in outputs of j=1:5
end
このコードを実行すると、次のエラーが発生します。
The variable AUC_T in a parfor cannot be classified.
See Parallel for Loops in MATLAB, "Overview".
AUC値を保存して、後で使用したいparfor loop
。何が問題で、どうすれば解決できますか?
ありがとう