Skip to contents

Simple wrapper returning an instance of a fixed parameter LazyTensor. Equivalent to LazyTensor(x).

Usage

Pm(x, is_complex = FALSE)

Arguments

x

A vector or a scalar value.

is_complex

A boolean (default is FALSE). Whether if we want to create a ComplexLazyTensor (is_complex = TRUE) or a LazyTensor (is_complex = FALSE).

Value

An object of class "LazyTensor" in parameter category. See ?LazyTensor for more details.

Details

See ?LazyTensor for more details.

Author

Chloe Serre-Combe, Amelie Vernay

Examples

if (FALSE) {
x <- 4
Pm_x <- Pm(x)
}