C Programming Boot Camp
#include <stdio.h> int main(int argc, char *argv[]) { printf("hello world\n"); return 0; }
Fundamentals
Advanced Topics
Example Code
- psychometric: estimating psychometric functions in C (aka logistic regression)
#include <stdio.h> int main(int argc, char *argv[]) { printf("hello world\n"); return 0; }