least_square_plane_rcpp | R Documentation |
returns the coefficients of the least square plane and the relative mean square error
least_square_plane_rcpp(PointsXYZ)
PointsXYZ |
matrix of coordinates of point |
returns the coefficients of the least square plane and the relative mean square error of a set of 3d points PointsXYZ
list_xyz<-matrix(data = c(-10.0, -10.0, -15.0 ,10.0, -10.0, -5.0, -10.0, 10.0, 5.0, 10.0, 10.0 ,15.0), nrow = 4,ncol = 3, byrow = TRUE) least_square_plane_rcpp(list_xyz)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.