Skip to content
New issue

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

Add voltage conversion equations to Neuropixels DataFrame docs #367

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jonnew
Copy link
Member

@jonnew jonnew commented Nov 5, 2024

/// 384 electrodes (rows) acquired at 30 kHz (columns). Each sample is a 14-bit, offset binary value
/// encoded as a <see cref="ushort"/>. To convert to microvolts, the following equation can be used:
/// <code>
/// V_electrode (uV) = 0.91553 uV × (ADC result – 8192)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The equation I've been using is 1/80/pow(2,14)*1e6 = 0.7629 uV

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That makes sense, not sure where I got my number from tbh.

/// 384 electrodes (rows) acquired at 30 kHz (columns). Each sample is a 12-bit, offset binary value
/// encoded as a <see cref="ushort"/>. To convert to microvolts, the following equation can be used:
/// <code>
/// V_electrode (uV) = 2.44141 uV × (ADC result – 2048)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See above...

1/80/pow(2,12)*1e6 = 3.05176 uV

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Volts per bit should be exactly 4x higher than for the beta probes

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get the 4x thing (14->12 bit) but I see this on the data sheet:

image

is it 80 or 100 for the public version?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jonnew jonnew requested a review from jsiegle November 7, 2024 14:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add sample to voltage conversion equations to neuropixels data frames
2 participants