print.caracas_solve_sys_sol | R Documentation |
Print solution
## S3 method for class 'caracas_solve_sys_sol'
print(
x,
simplify = getOption("caracas.print.sol.simplify", default = TRUE),
...
)
x |
A |
simplify |
Print solution in a simple format |
... |
Passed to |
if (has_sympy()) {
x <- symbol('x')
solve_sys(x^2, -1, x)
y <- symbol("y")
lhs <- cbind(3*x*y - y, x)
rhs <- cbind(-5*x, y+4)
sol <- solve_sys(lhs, rhs, list(x, y))
sol
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.