summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2016-11-26 11:11:18 +0200
committerJustin Worthe <justin.worthe@gmail.com>2016-11-26 11:11:18 +0200
commit8619259b0a2fef67e9146b8547680d6dfbb65287 (patch)
tree95d86fed2a428b3c262058e374d504a0abed1d09
Initial commit
-rw-r--r--.gitignore2
-rw-r--r--Cargo.toml6
-rw-r--r--README.org17
-rw-r--r--src/lib.rs6
4 files changed, 31 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..cb117fd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+Cargo.lock
+target \ No newline at end of file
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..ab5ca58
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "worthe_signals"
+version = "0.1.0"
+authors = ["Justin Worthe <justin.worthe@gmail.com>"]
+
+[dependencies]
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..a3912b6
--- /dev/null
+++ b/README.org
@@ -0,0 +1,17 @@
+#+TITLE: Worthe Signals
+#+AUTHOR: Justin Worthe
+
+I did a course back in university on signal processing and linear
+systems. Unfortunately, that was several years ago and I am not as
+fluent on the topic as I would like to be.
+
+I have a side project where I would like to use that knowledge, so it
+is time for me to revise it.
+
+This repo is a learning tool for me, where I will be implementing the
+signal processing logic as a way to help me revise it.
+
+I am working from the textbook "Signal Processing and Linear Systems"
+by B.P. Lathi. International edition, published by Oxford University
+Press in 2010.
+
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..cdfbe1a
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,6 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ }
+}