Skip to content

Instantly share code, notes, and snippets.

@alg0trader
alg0trader / chaos_func.py
Created March 3, 2013 01:35
Implementation of simple chaotic function.
# chaotic_func.py
# A simple program that illustrates chaotic behavior.
import numpy as np
import matplotlib.pyplot as plt
def chaos(x):
@alg0trader
alg0trader / main.c
Last active December 14, 2015 03:39
/*******************************************************************************
*
* Author: Austin Schaller
* Module: uart.c
* Description: Library functions that permit utilization of LPC17xx
* UART0 peripheral.
* Documentation: "UART - TLD"
*
*******************************************************************************/