私の質問はかなり標準的ですが、その解決策が見つかりません。
points=[x,y,z] があり、最適な線をプロットしたいと考えています。
私は以下の機能を使用しています(そしてスミスさんに感謝します)
% LS3DLINE.M Least-squares line in 3 dimensions.
%
% Version 1.0
% Last amended I M Smith 27 May 2002.
% Created I M Smith 08 Mar 2002
% ---------------------------------------------------------------------
% Input
% X Array [x y z] where x = vector of x-coordinates,
% y = vector of y-coordinates and z = vector of
% z-coordinates.
% Dimension: m x 3.
%
% Output
% x0 Centroid of the data = point on the best-fit line.
% Dimension: 3 x 1.
%
% a Direction cosines of the best-fit line.
% Dimension: 3 x 1.
%
% <Optional...
% d Residuals.
% Dimension: m x 1.
%
% normd Norm of residual errors.
% Dimension: 1 x 1.
% ...>
%
% [x0, a <, d, normd >] = ls3dline(X)
私は持っています。したがって、方程式は
points*a+dist=0
ここで、dist は最小です。原点からの距離。
今私の質問は、3D で最適なフィルター ラインをプロットする方法です。