ellipseToConicMatrix: Transformation of the ellipse parameters into the matrix representation
Description
Transformation of the ellipse parameters (Cartesian coordinates of the ellipse center, length of the semi-axes and angle of rotation) into the \((3 \times 3)\) into the matrix representation of conics.
# NOT RUN {# Ellipse parameters saxes <- c(5,2)
loc <- c(0,0)
theta <- pi/4# Matrix representation of the ellipse C <- ellipseToConicMatrix(saxes,loc,theta)
# }