summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorashwinrcs2015-10-12 16:10:22 +0530
committerashwinrcs2015-10-12 16:10:22 +0530
commit26091cc00540a02505398f0fb21ec2c882261003 (patch)
tree21971f58598183f7157129d6ef01bdf75bfacc89
parentb7bda69b96ebb0273fa5514121880959ae926366 (diff)
downloadSysID-R-code-26091cc00540a02505398f0fb21ec2c882261003.tar.gz
SysID-R-code-26091cc00540a02505398f0fb21ec2c882261003.tar.bz2
SysID-R-code-26091cc00540a02505398f0fb21ec2c882261003.zip
Delete rbs1.R
-rw-r--r--R/myCode/rbs1.R11
1 files changed, 0 insertions, 11 deletions
diff --git a/R/myCode/rbs1.R b/R/myCode/rbs1.R
deleted file mode 100644
index 6d6d3a5..0000000
--- a/R/myCode/rbs1.R
+++ /dev/null
@@ -1,11 +0,0 @@
-gen.rbs<-function(n,band,levels){
- require(signal)
- v<-rnorm(n)
-
- v<-sapply(v, function(x) {if(x==0) rnorm(1) else x}, simplify = 'vector')
- #if we do not specify else case, it assigns it as NULL
- bfilt<-butter(8,band,type = 'pass',plane = 'z')
- v1<-filter(bfilt,v)
- v1<-sapply(v1, function(x) {if(x>0) levels[2] else levels[1]})
- return(v1)
-} \ No newline at end of file