From 1e5f1571968a037572a93b2ae430a371ff3ed3df Mon Sep 17 00:00:00 2001 From: Suraj Yerramilli Date: Tue, 9 Jun 2015 13:29:56 +0530 Subject: Minor Corrections --- R/idframe.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'R/idframe.R') diff --git a/R/idframe.R b/R/idframe.R index 2845897..f3c07e8 100644 --- a/R/idframe.R +++ b/R/idframe.R @@ -39,8 +39,8 @@ idframe <- function(output=NULL,input=NULL, # Object Constructor dat <- list(output=data.frame(output),input=data.frame(input),type=type,Ts=Ts) - n <- dim(output)[1] - p <- dim(output)[2];m <- dim(input)[2] + n <- dim(data$output)[1] + p <- dim(data$output)[2];m <- dim(dat$input)[2] if(type=="freq"){ -- cgit