Closed kshtjkumar closed 9 months ago
generate_multi_columns_probe()
is a fast generator.
If you want more control you can create a probe from sractch using this kind of code :
https://probeinterface.readthedocs.io/en/main/examples/ex_01_generate_probe_from_sratch.html#sphx-glr-examples-ex-01-generate-probe-from-sratch-py
In short you create a positions array of shape (15, 2).
The other possibility is cerate manually an excel file and read it as a dataframe and then do
probe = Probe.from_dataframe(pd.read_excel('/my/probe.xlsx))
@kshtjkumar
You can also do the following:
from probeinterface import probe
probe_array = square_probe.to_numpy(complete=True)
# skip last contact here
probe_without_last_channel = Probe.from_numpy(probe_array[:-1])
hi, I am trying to design a 15 ch probe, using this:
is it possible to remove the last channel (4th row last ch), so that the total electrodes are 15 ?