• Stars
    star
    5
  • Rank 2,774,876 (Top 57 %)
  • Language
    C
  • License
    MIT License
  • Created almost 10 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

mex-sqlite3

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

Compilation for octave :

mkoctfile --mex -lsqlite3 -o sqlite3.mex sqlite3.c structlist.c

Then add resulting sqlite3.mex file to octave search path, for example :

% cd to your .mex file
p = genpath(pwd);
addpath(p);
savepath;