Heberto Mayorquin

Results 82 comments of Heberto Mayorquin

@alejoe91 we should probably move this warning to `get_traces` to the neobase recording withing the library.

All right, so we should: 1) Do this in `NeoBaseRecordingExtractor` as @alejoe91 points out, and 2) Do this with attributes so the copying machinery of slicing works. Please say if...

Ok, so this turned out to be more complicated than I thought. The problem is that in the test that was failing: https://github.com/SpikeInterface/spikeinterface/runs/7651689921?check_suite_focus=true The corresponding blackrock file has more than...

I see, what is exactly the definition of stream? The only definition that I see on the docs are: ``` Now the concept of a signal stream is used to...

@samuelgarcia thanks for taking the time to clarify. It seems that this was caused by my misunderstanding of what constitutes a stream. I also read in https://neo.readthedocs.io/en/stable/rawio.html That: `AnalogSignals must...

Hi, guys. I took a look at this. I looked through the [code base](https://github.com/JaneliaSciComp/PyWaveSurfer) of pywavesurfer and I don't think is too hard to modify it for lazy reading. However,...

For reference, this is the operation that they do to transfrom int16 to float: ```python for i in range(0, n_channels): scaled_data[i, :] = inverse_channel_scales[i] * np.polyval(np.flipud(scaling_coefficients[i, :]), data_as_ADC_counts[i, :]) ```...

Thanks a bunch for taking the time to answer. So for the the output is the following: ``` print(stream.codec_context.codec.properties.REORDER) print(stream.codec_context.codec.reorder) print(stream.codec_context.name) REORDER True h264 ``` But this is strange because...