This file contains hidden or 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 <stdio.h> | |
#include <stdlib.h> | |
extern int f(int start, int end, int step); | |
// a(n) = n * a(n - 1) * (a(n - 2))^2 | |
// a(1) = 3 | |
// a(2) = 4 | |
extern int a(int n); |
This file contains hidden or 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
// Sample Vala intermediate C code, as compiled from | |
// https://github.com/inequation/PerceptVala/blob/master/src/Neuron.vala | |
/* Neuron.c generated by valac 0.12.1, the Vala compiler | |
* generated from Neuron.vala, do not modify */ | |
#include <glib.h> | |
#include <glib-object.h> | |
#include <float.h> |
This file contains hidden or 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 "WAVframework.h"//#include "Talkthrough.h" | |
#include <math.h> | |
int sample = 0; | |
float t = 0.f; | |
int buffer[5000]; | |
#define TARGET_FREQ 30.f |
NewerOlder