shithub: aubio

ref: 0d434df5868fcf0f3cacfc22b6ddfc8355a18cd6
dir: /tests/cpp/test-fvec.cpp/

View raw version
#include <iostream>
#include <aubiocpp.h>

using namespace std;
using namespace aubio;

int main(){
        /* allocate some memory */
        uint_t win_s      = 1024;                       /* window size */
        uint_t channels   = 1;                          /* number of channel */
        fvec f = fvec(win_s, channels); /* input buffer */
        cout << f[0][0] << endl;
        f[0][0] = 2.;
        cout << f[0][0] << endl;
        return 0;
}