This directory contains matlab files with CoSMoMVPA dataset and neighborhood 
structs. These files are used for doctests in the mvpa2.datasets.cosmo module.

Using matlab, these files were generated using:

    ds=struct();
    ds.samples=[1 2 3; 4 5 6];
    ds.a.name='input';
    ds.fa.i=[1 2 3];
    ds.fa.j=[1 2 2];
    ds.sa.chunks=[2 2]';
    ds.sa.targets=[1 2]';
    ds.sa.labels={'a','b','c','d';'e','f','g','h'};
    save('ds_tiny.mat','-struct','ds');

    nbrhood=struct();
    nbrhood.neighbors={1, [1 3], [1 2 3], [2 2]};
    nbrhood.fa.k=[4 3 2 1];
    nbrhood.a.name='output';
    save('nbrhood_tiny.mat','-struct','nbrhood');

CoSMoMVPA is hosted at cosmomvpa.org and github.com/CoSMoMVPA/CoSMoMVPA
