Borrar filtros
Borrar filtros

Solve matrix series equation

1 visualización (últimos 30 días)
Ramesh Kithsiri
Ramesh Kithsiri el 13 de Nov. de 2021
Editada: David Goodmanson el 14 de Nov. de 2021
I have 7x2 matrix and 7x3 matrix that contains 2D coordinates and related 3D coordinates. I need to find the projection matrix( ) by using these 14 coordinates in below equation.
I gave a try using symbolic math toolbox. But I could not figure out a way to continue from this step.
syms x [2,1];
syms X [3,1];
syms r [2,3];
eq = x==r*X;
  1 comentario
Rik
Rik el 13 de Nov. de 2021
An exact solution might not be possible with numeric inputs. Did you try a numeric fitter? A right-division of one of the 2D sets by the 3D counterpart might give you a reasonable initial estimate for the projection matrix.

Iniciar sesión para comentar.

Respuestas (1)

David Goodmanson
David Goodmanson el 14 de Nov. de 2021
Editada: David Goodmanson el 14 de Nov. de 2021
Hi Ramesh,
This is an overdetermined system, but if you define x as a 2x7 matrix of 2d coordinate values and X as a corresponding 3x7 matrix of 3d coordinate values, then
r = x/X
provides a least squares solution for r.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by