diff options
author | Suraj Yerramilli | 2015-08-21 15:58:02 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-08-21 15:58:02 +0530 |
commit | 66e204ae6e6720c80de116c56895a75ea6674949 (patch) | |
tree | 3e03f98d6969e396c5df64cd9d5610d30436ed86 | |
parent | 406e12c7bca5e63ac303a3550f55f33138ebce29 (diff) | |
download | SysID-R-code-66e204ae6e6720c80de116c56895a75ea6674949.tar.gz SysID-R-code-66e204ae6e6720c80de116c56895a75ea6674949.tar.bz2 SysID-R-code-66e204ae6e6720c80de116c56895a75ea6674949.zip |
Initialized functions for extracting the names and data from idframe objects
-rw-r--r-- | R/ioNamesData.R | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/R/ioNamesData.R b/R/ioNamesData.R new file mode 100644 index 0000000..98c105c --- /dev/null +++ b/R/ioNamesData.R @@ -0,0 +1,11 @@ +#' @export +nInputSeries <- function(data) ncol(data$input) + +#' @export +nOutputSeries <- function(data) ncol(data$output) + +#' @export +inputData <- function(x){} + +#' @export +outPutData <- function(x){}
\ No newline at end of file |