Dear all,
I'd like to calculate the cross-talk functions to assess the accuracy of my inverse solution, in my case dSPM. I should be able to calculate this from the leadfield matrix and the inverse matrix. In other words, multiply the imagingkernel from my inverse solution with the gain from the headmodel.
Would that be correct?
I noticed that my results do not contain an ImagingKernel. This is the code that I use for calculation of the sources.
sFiles = bst_process('CallProcess', 'process_inverse_2018', sFiles, [], ... 'output', 3, ... % Full results 'inverse', struct(... 'Comment', 'dSPM: EEG', ... 'InverseMethod', 'minnorm', ... 'InverseMeasure', 'dspm2018', ... 'SourceOrient', {{'fixed'}}, ... 'Loose', 0.2, ... 'UseDepth', 1, ... 'WeightExp', 0.5, ... 'WeightLimit', 10, ... 'NoiseMethod', 'reg', ... 'NoiseReg', 0.1, ...clc 'SnrMethod', 'fixed', ... 'SnrRms', 1e-06, ... 'SnrFixed', 3, ... 'ComputeKernel', 1, ... 'replacefile', 1, ... 'DataTypes', {{'EEG'}}));
Why does it not provide me with an imagingkernel?
Thanks in advance,
Jord