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
No description provided.
The text was updated successfully, but these errors were encountered:
@mdenker : can you give an example what does not work what expected and what is the expected result ?
Sorry, something went wrong.
The following code worked:
# return all objects AnalogSignal with parameters annotation a=5, b=6, c=7 print "targdict={'a':5, 'b':6, 'c':7 } and objects='AnalogSignal' ", blk.filter(targdict={'a': 5, 'b':6, 'c': 7}, objects='AnalogSignal') # return all objects SpikeTrain with parameter annotation st=8 print "targdict={'st':8} and objects='SpikeTrain' ", blk.filter(targdict={'st': 8}, objects='SpikeTrain') # return all objects AnalogSignal and SpikeTrain with parameters annotation st=8, c=7 print "targdict={'st':8, 'c':7 } and objects=['AnalogSignal', 'SpikeTrain'] ", blk.filter(targdict={'st': 8, 'c': 7}, objects=['AnalogSignal', 'SpikeTrain'])
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: