solving equation returns 0x1 sym

조회 수: 26 (최근 30일)
Phillip Graf
Phillip Graf 2021년 8월 30일
댓글: Phillip Graf 2021년 9월 7일
I want to solve this example from a book:
This is the code:
syms r11 r12 r13 r21 r22 r23 r31 r32 r33
r11=0.766; r12=0; r13=0.643; r22=0.5;
GRB=[r11 r12 r13; r21 r22 r23; r31 r32 r33]
GRB = 
BRGGRB=GRB*GRB.';
Y=solve(BRGGRB==eye(3),[r21 r23 r31 r32 r33])
Y = struct with fields:
r21: [0×1 sym] r23: [0×1 sym] r31: [0×1 sym] r32: [0×1 sym] r33: [0×1 sym]
But when using the solver I keep getting empty fields. I've read some other answered questions with the same problem but couldn't figure the reason for mine.

답변 (1개)

Kumar Pallav
Kumar Pallav 2021년 9월 2일
The equation is not valid for any values of [r21 r23 r31 r32 r33]. If you change r11=1, and r13=0, you could see an output, as then the equation becomes valid.
You could see that BRGGRB(1,1) value is approximately 1 but not exactly 1. Hence, when you solve it by equating to identity matrix, it does not equate. You could try writing equations separately (refer this) and solve the equation.
  댓글 수: 1
Phillip Graf
Phillip Graf 2021년 9월 7일
Thank you. When I set BRGGB(1,1)=1 it works.
Is there any way to atuomate this?

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

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by