GithubHelp home page GithubHelp logo

Comments (4)

pwstegman avatar pwstegman commented on June 3, 2024

Thanks for letting me know, I'll look into this. Could you add the code you ran that caused the error?

from bci.js.

yahyawasim97 avatar yahyawasim97 commented on June 3, 2024

const bci = require('bcijs');

let samples;
const getData =async()=>{
let a = await bci.loadEDF('awais.md.edf');
samples =[...a.channels[0].samples];
console.log(a)
try{

        let feature = await bci.averageBandPowers(a.channels, 256, ['alpha','beta']);
        console.log(feature);
    }catch(e){
        console.log(e)
    }

}
getData();

from bci.js.

pwstegman avatar pwstegman commented on June 3, 2024

Looks like the documentation for loadEDF needed updating. I've corrected it now. Each channel is an object that has a 1D array of samples for that channel, so passing a.channels into averageBandPowers will throw an error. I've modified your code to get it working. Give this a try:

const bci = require('bcijs');

let samples;

const getData = () => {
    let edf = bci.loadEDF('awais.md.edf');

    // Grab the samples from each channel
    samples = edf.channels.map(channel => channel.samples);

    // Transpose so channels are columns and samples are rows (the format averageBandPower expects)
    samples = bci.transpose(samples);
    
    let feature = bci.averageBandPowers(samples, 256, ['alpha','beta']);
    console.log(feature);
}

getData();

from bci.js.

yahyawasim97 avatar yahyawasim97 commented on June 3, 2024

Thanks alot man! It works!

from bci.js.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.