How to solve an equation with two matrices?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to solve for all the unknowns in a matrix where I know the output of the matrix. This is what I mean: I have X and A and based on the two I want to find theta1 alpha d a
syms theta1 alpha d a
X = [ nan nan -3/4 1;
nan 1/4 nan sqrt(3);
0 nan nan 1/3;
0 0 0 1]
A = [ cos(theta1) -sin(theta1)*cos(alpha) sin(theta1)*sin(alpha) a*cos(theta1);
sin(theta1) cos(theta1)*cos(alpha) -cos(theta1)*sin(alpha) a*sin(theta1);
0 sin(alpha) cos(alpha) d;
0 0 0 1]
idx = find(~isnan(X));
solve(X(idx)==A(idx), [ theta1 alpha d a])
3 Kommentare
Torsten
am 13 Dez. 2021
S = solve(X(idx)==A(idx), [ theta1 alpha d a])
What is the MATLAB class of S ?
Antworten (1)
Gargi Patil
am 21 Dez. 2021
Hi,
As suggested in the comments, the result can be stored in a variable S. S will be a struct with the fields theta1, alpha, d and a as shown below:
syms theta1 alpha d a
X = [ nan nan -3/4 1;
nan 1/4 nan sqrt(3);
0 nan nan 1/3;
0 0 0 1];
A = [ cos(theta1) -sin(theta1)*cos(alpha) sin(theta1)*sin(alpha) a*cos(theta1);
sin(theta1) cos(theta1)*cos(alpha) -cos(theta1)*sin(alpha) a*sin(theta1);
0 sin(alpha) cos(alpha) d;
0 0 0 1];
idx = find(~isnan(X));
S = solve(X(idx)==A(idx), [theta1 alpha d a])
You can access the possible solutions as follows:
S.a(:, 1)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Assumptions finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!