From 8619259b0a2fef67e9146b8547680d6dfbb65287 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sat, 26 Nov 2016 11:11:18 +0200 Subject: Initial commit --- .gitignore | 2 ++ Cargo.toml | 6 ++++++ README.org | 17 +++++++++++++++++ src/lib.rs | 6 ++++++ 4 files changed, 31 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 README.org create mode 100644 src/lib.rs 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 "] + +[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() { + } +} -- cgit v1.2.3