Borrar filtros
Borrar filtros

Modulation index for two vectors

5 visualizaciones (últimos 30 días)
Sparsha Kumari
Sparsha Kumari el 24 de Jun. de 2022
Respondida: Nithin Kumar el 1 de Sept. de 2023
Hello,
I have two column vectors (representing two waves) and have to calculate the modulation index for each vector. Both the vectors are real and are EEG signals. Could someone suggest me how to proceed?

Respuestas (1)

Nithin Kumar
Nithin Kumar el 1 de Sept. de 2023
Hi Sparsha,
I understand that you want to find the modulation index of two real and EEG signals.
To calculate the modulation index for each vector representing EEG signals in MATLAB, kindly refer to the following sample code:
1. Calculate the analytic signal for each EEG vector using the Hilbert transform.
analytic_signal1 = hilbert(signal1);
analytic_signal2 = hilbert(signal2);
2. Compute the instantaneous phase and amplitude of the analytic signals.
phase1 = angle(analytic_signal1);
phase2 = angle(analytic_signal2);
amplitude1 = abs(analytic_signal1);
amplitude2 = abs(analytic_signal2);
3. Calculate the modulation index.
modulation_index = (abs(amplitude1 - amplitude2)) ./ (amplitude1 + amplitude2);
I hope this answer helps you.

Categorías

Más información sobre EEG/MEG/ECoG en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by