unscale_matrices: Unscale a matrix based on provided mean and standard deviation values.
Description
Unscale a matrix based on provided mean and standard deviation values.
Usage
unscale_matrices(mat, means, std = NULL)
Value
An unscaled numeric matrix.
Arguments
- mat
A numeric matrix to be unscaled.
- means
A numeric vector of means for each column.
- std
A numeric vector of standard deviations for each column (optional).