Skip to content

Instantly share code, notes, and snippets.

@charcode78
charcode78 / blas-sample.c
Last active January 6, 2019 22:49
How-to build: emscripten + gsl
#include <stdio.h>
#include <gsl/gsl_blas.h>
int
main (void)
{
double a[] = { 0.11, 0.12, 0.13,
0.21, 0.22, 0.23 };
double b[] = { 1011, 1012,