BillyBigGun / PFE-A2023-Classification-Modulation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Git

Personnal Access Token

Before being able to push or pull, you must create a personnal access token. It is used instead of the password for more security. See Personal access token

Commands

This is the git command list:

git clone <repo>
git add .                   #add all the changes you made
git commit -m "<message>"   #the message that represent the changes made
git push origin <branch>    #the name of the branch you want to push to
git pull                    #pull the changes online to your local device on your current branch
git branch <branch>         #the name of the branch you want ot create
git checkout <branch>       #the branch you want to work on

Cloning

The project contains submodules. Clone it using this command:

git clone --recurse-submodules <repository-url>

Using ThinkDSP

To use the classes in ThinkDSP, import it to you script with:

from lib.ThinkDSP.code.thinkdsp import Wave

Change <Wave> for the class you want to import

UML drawings

Waveform

UML Diagram Waveform

Neural Network

UML Diagram NN

About


Languages

Language:Python 100.0%