Nothing
#####
## DO NOT EDIT THIS FILE!! EDIT THE SOURCE INSTEAD: rsrc_tree/atoms/elementwise/square.R
#####
## CVXPY SOURCE: atoms/elementwise/square.py
## Square -- convenience wrapper for Power(x, 2)
#' Square of an expression: x^2
#'
#' @param x An Expression
#' @returns A Power atom with p=2
#' @export
square <- function(x) {
Power(x, 2)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.