R/RcppExports.R

Defines functions run_reservoir

Documented in run_reservoir

# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

#' @name run_reservoir
#' @title Run reservoir
#' @description Run reservoir creates the internal states for the ESN.
#' 
#' @param input Numeric matrix containing the input features
#' @param win Numeric matrix. The input weight matrix.
#' @param wres Numeric matrix. The reservoir weight matrix.
#' @param alpha Numeric value. The leakage rate (smoothing parameter).
#' 
#' @return states train Numeric matrix with the internal states.
#' @export
NULL

run_reservoir <- function(inputs, win, wres, alpha) {
    .Call(`_echos_run_reservoir`, inputs, win, wres, alpha)
}
ahaeusser/echos documentation built on June 2, 2025, 2:17 a.m.