필터 지우기
필터 지우기

generalize​dInverseKi​nematics in a nested parforloop

조회 수: 1 (최근 30일)
Denizhan AKINCI
Denizhan AKINCI 2024년 5월 2일
댓글: Denizhan AKINCI 2024년 5월 6일
Hello everyone,
I am trying to use PCT for my inverse kinematics solver for my robotic arm: [qWaypoints(2,:), solutionInfo] = gik_Pick(q0, fixOrientation);
but I get this error :
Error: Unable to classify the variable 'qWaypoints' in the body of the parfor-loop. For more information, see Parallel for Loops in MATLAB, "Solve Variable Classification Issues in parfor-Loops".
I looked at the sliced variables etc. but could not find anything that could help me. Any ideas how to make this work?
Also another question, PCT can be used to run simulink files as well ? Or will it cause problems ? Becuse I'll be also trying that in the future.

채택된 답변

Edric Ellis
Edric Ellis 2024년 5월 2일
편집: Edric Ellis 2024년 5월 2일
You haven't given us a lot to go on there, but the form of assignment you mention is only valid if qWaypoints is a parfor "temporary" variable. In other words, you must have a full (non-indexed) assignment inside the loop to that variable, like this:
parfor i = 1:N
qWaypoints = zeros(3, 5); % or whatever size is appropriate
[qWaypoints(2,:), solutionInfo] = gik_Pick(q0, fixOrientation);
end
I doubt this is actually what you want though. Could you update your question please to give us a minimal reproduction of what you're trying to achieve.
  댓글 수: 1
Denizhan AKINCI
Denizhan AKINCI 2024년 5월 6일
I apologize for not providing sufficient context initially. My intention was to ask for assistance in resolving that variable issue in my code. Your response addressed my question effectively. Thank you for your assistance!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by