This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
1/k Code Rate Convolutional Code Encoding and Decoding | |
Finite State Machine is used for encoding | |
Viterbi Decoder is used for decoding | |
Zero Tail Termination is used for making choice | |
of final state easier | |
""" | |
class ConvCode: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
import sys, re | |
def fatal(r): | |
print("tbgen: fatal:", r) | |
exit(1) | |
def warn(r): | |
print("tbgen: warning:", r) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <dos.h> | |
#include <math.h> | |
#include <conio.h> | |
#include <stdio.h> | |
#include <graphics.h> | |
typedef struct { | |
float x, y, z; | |
} Vec3; |