Solve non-linear system equation in matrix form
Show older comments
Hi, Someone could help me to solve my system equations:

where U is an Unit matrix of 3x3. This is my try used solve fuction
syms yX zX zY zZ yZ
A=[cos(40/180*pi) 0 sin(40/180*pi); yX 0.5 yZ; zX zY zZ];
U=eye(3);
eqn=A*transpose(A)==U;
[yX,zY,zZ,yZ]=solve(eqn,[yX,zY,zZ,yZ]);
Thanks
1 Comment
Azzi Abdelmalek
on 4 Mar 2016
post your equation as a text, this allows to copy it and paste it.
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 4 Mar 2016
look at this example
syms a b c
eq=[a 2 3;a b 1; c 5 4]*[a 2 3;a b 1; c 5 4]==randi(3,3,3)
out=solve(eq)
3 Comments
Le Anh DOAN
on 4 Mar 2016
Azzi Abdelmalek
on 4 Mar 2016
If you have posted your equation as a text instead of a picture, we could have tested your equation with your own values
Le Anh DOAN
on 4 Mar 2016
Categories
Find more on Numeric Solvers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!