From d69c2fa0ff83c613d799e5a74af51a35fcf0717c Mon Sep 17 00:00:00 2001 From: Suraj Yerramilli Date: Sat, 21 Mar 2015 13:02:03 +0530 Subject: Added skeleton for transfer functions --- R/tf.R | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 R/tf.R diff --git a/R/tf.R b/R/tf.R new file mode 100644 index 0000000..135a2d7 --- /dev/null +++ b/R/tf.R @@ -0,0 +1,10 @@ +# S3 class for defining trasnfer functions +tf <- function(num=c(1),den=c(1),Ts=1){ + +} + +# Display the Transfer Function +print.tf <- function(G){ + +} + -- cgit