Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
parfor loop variable cannot be classified
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm trying to create a function that will select each column from a 1X30 cell and set the velocity value to the mean(defined as a 1X30 cell from another function), but I keep getting "The variable A in a parfor cannot be classified"
function [A]=set_vel(cell, mean)
A={};
parfor i=1:length(cell)
for j=1:length(mean)
A{i,j} = setvalues(cell{i},'vel', mean{j});
end
end
Can someone help?
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!