diff options
author | Suraj Yerramilli | 2015-05-25 07:30:55 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-05-25 07:30:55 +0530 |
commit | fbb5a731b240ed64fbbb020e2567149960c00551 (patch) | |
tree | 3c57017f605b0bb1f57ad6a093e8b4d4514ff6ff | |
parent | 6d3797698e839d8cfe3d491c37c6b318c5dcd25c (diff) | |
download | SysID-R-code-fbb5a731b240ed64fbbb020e2567149960c00551.tar.gz SysID-R-code-fbb5a731b240ed64fbbb020e2567149960c00551.tar.bz2 SysID-R-code-fbb5a731b240ed64fbbb020e2567149960c00551.zip |
Corrected error message
-rw-r--r-- | R/idframe.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/idframe.R b/R/idframe.R index 707e4a5..04c1f4c 100644 --- a/R/idframe.R +++ b/R/idframe.R @@ -34,7 +34,7 @@ idframe <- function(output=numeric(0),input=numeric(0), if(length(output)!=0 && length(input)!=0){ if(dim(output)[1]!=dim(input)[1]) # observation validation - stop("Dimensions don't matach") + stop("Dimensions don't match") } # Object Constructor |