Recorded membrane potential values from arbor.cable_probe_membrane_voltage_cell
#2047
-
Dear developers; I'm pretty sure I've read somewhere that the recorded values correspond to the spatially average membrane potential within each CV, but now I cannot find that reference anymore. Is this the correct interpretation? On a related note, is the interpolation operation performed by the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @espenhgn it might have been the commented source code in // Voltage estimate [mV] at `location`, interpolated.
// Sample value type: `double`
// Sample metadata type: `mlocation`
struct ARB_SYMBOL_VISIBLE cable_probe_membrane_voltage {
locset locations;
};
// Voltage estimate [mV], reported against each cable in each control volume. Not interpolated.
// Sample value type: `cable_sample_range`
// Sample metadata type: `mcable_list`
struct ARB_SYMBOL_VISIBLE cable_probe_membrane_voltage_cell {}; by that no interpolation is performed for the The term interpolation itself is a bit tricky, if I understand correctly there's two cases that can occur:
Does that help? |
Beta Was this translation helpful? Give feedback.
Hi @espenhgn
it might have been the commented source code in
cable_cell.hpp
ll61by that no interpolation is performed for the
_cell
probes, rather each (=spatial) value is reported as-is.The term interpolation itself is a bit tricky, if I understan…