Learn R Programming

volesti (version 1.1.0)

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)

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.

Value

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

Examples

Run this code
# NOT RUN {
# 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