Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/rmartinjak/mex-sqlite3

An extension for MATLAB® or GNU/octave to access sqlite3 databases
https://github.com/rmartinjak/mex-sqlite3

Last synced: 3 days ago
JSON representation

An extension for MATLAB® or GNU/octave to access sqlite3 databases

Lists

README

        

mex-sqlite3
===========

An extension for MATLAB® or GNU/octave to access sqlite3 databases

Compilation for octave :
```octave
mkoctfile --mex -lsqlite3 -o sqlite3.mex sqlite3.c structlist.c
```

Then add resulting sqlite3.mex file to octave search path, for example :
```octave
% cd to your .mex file
p = genpath(pwd);
addpath(p);
savepath;
```