We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If filtering a neo objects with an empty targdict, then nothing is returned. Desirable would be to return everything.
block.filter(targdict={},objects=["SpikeTrain"]) --> []
The text was updated successfully, but these errors were encountered:
Some first results for function filter: Following code worked, return list of all AnalogSignal found in Block:
print "targdict={} and objects='AnalogSignal' ", blk.filter(targdict={}, objects='ANALOGSignal') print "targdict={} and objects=AnalogSignal ", blk.filter(targdict={}, objects=AnalogSignal)
Sorry, something went wrong.
print "targdict={} and objects=['AnalogSignal'] ", blk.filter(targdict={}, objects=['AnalogSignal']) print "targdict={} and objects=['AnalogSignal'] ", blk.filter(targdict={}, objects=['AnalogSiGNal'])
also worked. I will try next step with objects is a list ex. objects=['AnalogSignal', 'SpikeTrains']
Some new results like following also worked now:
print "targdict={} and objects=['SPikETRAin', 'AnalogSIGNAl', 'BLOCK'] ", blk.filter(targdict={}, objects=["SPikETRAin", "AnalogSIGNAL", "BLOCK"])
return a list of all targeted (searched) objects
No branches or pull requests
If filtering a neo objects with an empty targdict, then nothing is returned. Desirable would be to return everything.
The text was updated successfully, but these errors were encountered: