All Downloads are FREE. Search and download functionalities are using the official Maven repository.

model.unimplementedBiology.LGN Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package model.unimplementedBiology;

import model.MARK_II.Region;

/**
 * Input into LGN: activity of Cells within OldRetina.
 *  
 * Output of LGN: activity of Neurons from this Region.
 *
 * @author Quinn Liu ([email protected])
 * @version June 5, 2013
 */
public class LGN {
    private Region region;

    public LGN(Region region) {
        // how should desiredLocalActivity be calculated
        this.region = region;
    }

    public Region getRegion() {
        return this.region;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy