Skip to contents

The `mvnfd` class represents a set of multivariate multidimensional vector data.

Constructor for `mvnfd` objects (same as Mvnfd(...))

Usage

Mvnfd(...)

Arguments

...

A `nfd` objects which have separated by comma

Active bindings

data

A numeric matrix of data points.

nobs

Number of observations.

nvar

number of variables

Methods


Method new()

Constructor for `mvnfd` objects (same as 'Mvnfd')

Usage

mvnfd$new(...)

Arguments

...

A `nfd` objects which have separated by comma


Method print()

Print method for `mvnfd` objects

Usage

mvnfd$print(...)

Arguments

...

Additional arguments to be passed to `print`


Method clone()

The objects of this class are cloneable with this method.

Usage

mvnfd$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

# Create some vector data
data_matrix1 <- matrix(rnorm(100), nrow = 10, ncol = 10)
data_matrix2 <- matrix(rnorm(100), nrow = 10, ncol = 10)
nfd_obj1 <- Nfd(data = data_matrix1)
#> Error in Nfd(data = data_matrix1): could not find function "Nfd"
nfd_obj2 <- Nfd(data = data_matrix2)
#> Error in Nfd(data = data_matrix2): could not find function "Nfd"
mvnfd_obj <- Mvnfd(nfd_obj1,nfd_obj2)
#> Error: object 'nfd_obj1' not found
print(mvnfd_obj)
#> Error: object 'mvnfd_obj' not found
nfd_obj$data
#> Error: object 'nfd_obj' not found
nfd_obj$nobs
#> Error: object 'nfd_obj' not found