R/069_atoms_elementwise_square.R

Defines functions square

Documented in square

#####
## 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)
}

Try the CVXR package in your browser

Any scripts or data that you put into this service are public.

CVXR documentation built on March 6, 2026, 9:10 a.m.