Skip to content

Instantly share code, notes, and snippets.

View yihuajack's full-sized avatar
💭
Studying

Liu Yihua yihuajack

💭
Studying
View GitHub Profile
/*
* File: Hexapod Robot
* Authors: Joseph Primmer, Kenny Mao,
* Megan Baukus, Bruce Land et. al.
* Target PIC: PIC32MX250F128D
*/
#include "config_1_2_3.h"
// need for rand function
#include <stdlib.h>
@odarbelaeze
odarbelaeze / rand.cc
Last active March 25, 2021 11:15
Random number generator benchmarks
#include <cstdlib>
#include <iostream>
#include <chrono>
#include <random>
#include<gsl/gsl_rng.h>
class Timer
{
private: