Skip to content

Instantly share code, notes, and snippets.

View vjames19's full-sized avatar

Victor J Reventos vjames19

View GitHub Profile
@vjames19
vjames19 / HL.m
Last active August 29, 2015 14:18
Quiz 2 INEL 4301
function y = HL(x)
x2 = x(x >= -60 & x <= 60);
y(find(x >= -60 & x <= 60))= exp(-1i *((2*pi)/30 * x2));
y(find(x > 60 | x < -60)) = 0;
end
@vjames19
vjames19 / LargestBlockOfOnes.java
Last active August 29, 2015 14:17
Largest block of ones divide and conquer
package com.vjames19;
/**
* Created by vjames19 on 3/16/15.
*/
public class LargestBlockOfOnes {
public static int[] largestBlockOfOnes(int[] a, int low, int sup) {
if (low > sup) {
return new int[] {-1, -1};
@vjames19
vjames19 / 1_README.md
Last active August 29, 2015 13:59
golang tour exercise solutions

Golang Tour Exercise solutions

@vjames19
vjames19 / ox_sensor_launchpad.c
Last active August 29, 2015 13:58
UART communication with oxygen sensor with msp430 launchpad
#include <stdlib.h>
#include <string.h>
#include "msp430.h"
#define TXD BIT2
#define RXD BIT1
unsigned int CV = 0;
unsigned int DV = 0;
unsigned int RO = 0;