This repository houses all code bases, examples, and Read Me's for the Open Source Neuroengineering Book developed by students at the University of North Dakota BME Program
This repository contains code examples for each chapter in the Neuoengineering textbook. Each chapter of the book has its own folder containing relevant code examples, a README.md
for instructions, and a requirements.txt
for dependencies if applicable.
Code examples are written in various languages, styles, and requirements to allow for a breadth of experiences. As you go through the code examples, utilize your knowledge from the chapter to reinforce your learning!
We hope you enjoy your journey through this github!
- Chapter 1
- Chapter 2
- Chapter 3
- Chapter 4
- Chapter 5
- Chapter 6
- Chapter 7
- Chapter 8
- Chapter 9
- Chapter 10
- Chapter 11
- Chapter 12
- Windows Subsystem for Linux (WSL)
- Visual Studio Code (VS Code)
- Git
- Python 3.10 or higher
- WSL: Follow the official Microsoft guide to install WSL.
- VS Code: Download and install VS Code.
- Open VS Code.
- Press
Ctrl+Shift+P
to open the command palette. - Type
WSL: New Window
and select it to open a new VS Code window with a WSL session.
-
Open the terminal in VS Code (using WSL).
-
Navigate to your desired directory:
cd /path/to/your/directory
-
Clone the GitHub Repository
git clone https://github.com/your-username/your-repo.git
-
Navigate to the Chapter repo you want to run examples for
cd chapter repo
-
Run the examples
python3 example.py
NOW YOU ARE SET!