Learn R Programming

volesti (version 1.1.2-9)

gen_cross: Generator function for cross polytopes

Description

This function generates the \(d\)-dimensional cross polytope in H- or V-representation.

Usage

gen_cross(dimension, representation = "H")

Value

A polytope class representing a cross polytope in H- or V-representation.

Arguments

dimension

The dimension of the cross polytope.

representation

A string to declare the representation. It has to be 'H' for H-representation or 'V' for V-representation. Default valus is 'H'.

Examples

Run this code
# generate a 10-dimensional cross polytope in H-representation
P = gen_cross(5, 'H')

# generate a 15-dimension cross polytope in V-representation
P = gen_cross(15, 'V')

Run the code above in your browser using DataLab