
model.MARK_II.sensory.AudioCell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WalnutiQ Show documentation
Show all versions of WalnutiQ Show documentation
A Java based Neuron Modeling framework
The newest version!
package model.MARK_II.sensory;
/**
* A data structure that represents a single audio cell within the cochlea.
*
* @author Quinn Liu ([email protected])
* @version June 8, 2013
*/
public class AudioCell extends SensorCell {
public AudioCell() {
super();
}
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("\n==================");
stringBuilder.append("\n--AudioCell Info--");
stringBuilder.append("\nisActive: ");
stringBuilder.append(getActiveState());
stringBuilder.append("\n==================");
String sensorCellInformation = stringBuilder.toString();
return sensorCellInformation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy