I cant take inverse of J matris. it is jacobian.

조회 수: 14 (최근 30일)
Emrah
Emrah 2013년 12월 26일
댓글: Emrah 2013년 12월 27일
syms x g h k l q a b c d f
y1 = (x*cos(q)+x*cos(g)-f*cos(l)-(b/2)*cos(h)-a*cos(q));
y2 = (x*sin(q)+x*sin(g)-f*sin(l)-(b/2)*sin(h)-a*sin(q));
y3 = (a*cos(q)+b*cos(h)-c*cos(k)-d);
y4 = a*sin(q)+b*sin(h)-c*sin(k);
y = [y1; y2; y3; y4];
v = [x; (h); (k); (l)];
J = jacobian(y, v);
inv(J)
J * inv(J)
  댓글 수: 6
Walter Roberson
Walter Roberson 2013년 12월 26일
What does rank(J) indicate ?
Emrah
Emrah 2013년 12월 26일
I dont understand what you mean? J matrix is jacobian matris. rank(J) = 4 gives me. :(

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

채택된 답변

A Jenkins
A Jenkins 2013년 12월 26일
편집: A Jenkins 2013년 12월 26일
simplify(J*inv(J))
ans =
[ 1, 0, 0, 0]
[ 0, 1, 0, 0]
[ 0, 0, 1, 0]
[ 0, 0, 0, 1]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by