필터 지우기
필터 지우기

Calculationg with quternions Matlab function did not work

조회 수: 3 (최근 30일)
Mark S
Mark S 2021년 12월 25일
편집: Mark S 2022년 1월 6일
Hello,
I am having some trouble with my function. I would transform a coordinate vector using Unit Quaternions.
I have written this function:
function p_A = q_transform_coordinate_vector(R_A_B, p_B)
p_A = q_A_B * q_pure(p_B) * q_inv(q_A_B);
end
But this function is not workin. It appears this error message:
Unrecognized function or variable 'q_A_B'.
Error in test_fehler>q_transform_coordinate_vector (line 102)
p_A = q_A_B * q_pure(p_B) * q_inv(q_A_B);
Error in test_fehler (line 47)
p_A = q_transform_coordinate_vector(R_A_B, p_B)
I did get it why I get this error message. Maybe someone can have a look and tell me what I am doing wrong. Thanks :)
.

채택된 답변

Jan
Jan 2021년 12월 25일
function p_A = q_transform_coordinate_vector(R_A_B, p_B)
% ^^^^^
p_A = q_A_B * q_pure(p_B) * q_inv(q_A_B);
% ^^^^^ ^^^^^^
end
You provide R_A_B as input, but use q_A_B.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Verification, Validation, and Test에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by