This project is a CDMA (Code Division Multiple Access) encoder and decoder. CDMA is a channel access method used by various radio communication technologies. This project aims to provide a simple implementation of CDMA encoding and decoding techniques.
The CDMA Encoder/Decoder project includes:
- A CDMA encoder that converts input data into a CDMA signal.
- A CDMA decoder that retrieves the original data from the CDMA signal.
- Example scripts to demonstrate the encoding and decoding process.
To install and run the CDMA Encoder/Decoder project, follow these steps:
- Clone the repository:
git clone https://github.com/ErickDum/CDMA_encoder_decoder
- Navigate to the project directory:
cd CDMA_encoder_decoder - Setup virtual environment:
- On Windows:
py -3 -m venv .venv .venv\\Scripts\\activate
- On macOS and Linux:
python3 -m venv .venv source .venv/bin/activate
- On Windows:
- Install the required dependencies:
pip install -r requirements.txt
- Run
reflex run