implicitization | R Documentation |
Implicitization of a system of parametric equations (see example).
implicitization(nvariables, parameters, equations, relations)
nvariables |
number of variables |
parameters |
character vector of the names of the parameters, or
|
equations |
named list of |
relations |
list of |
A list of qspray
polynomials.
library(qspray)
# ellipse example ####
# variables
cost <- qlone(1)
sint <- qlone(2)
nvariables <- 2
# parameters
a <- qlone(3)
b <- qlone(4)
parameters <- c("a", "b")
#
equations <- list(
"x" = a * cost,
"y" = b * sint
)
relations <- list(
cost^2 + sint^2 - 1
)
#
implicitization(nvariables, parameters, equations, relations)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.