AxisSet5D-class | R Documentation |
A class representing a five-dimensional axis set, extending the AxisSet4D class with an additional fifth axis.
m
A NamedAxis
object representing the fifth axis.
AxisSet4D-class
, NamedAxis-class
# Create NamedAxis objects for each dimension
x_axis <- new("NamedAxis", axis = "x", direction = 1)
y_axis <- new("NamedAxis", axis = "y", direction = 1)
z_axis <- new("NamedAxis", axis = "z", direction = 1)
t_axis <- new("NamedAxis", axis = "t", direction = 1)
v_axis <- new("NamedAxis", axis = "v", direction = 1)
# Create an AxisSet5D object
axis_set_5d <- new("AxisSet5D", i = x_axis, j = y_axis, k = z_axis,
l = t_axis, m = v_axis, ndim = 5L)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.