How to calculate peak voltages of a waveform.?
3 次查看(过去 30 天)
显示 更早的评论
I have an EEG potential waveform, which has multiple peaks (Positive and negative). I'm using the findpeaks function to find the peak's .But it doesn't calculate the peak's voltage / y-axis value. It calculates the x-axis value.
Any idea how i can do that.?
This is how i am calculating the peaks:
[~,locs_P1P3] = findpeaks(EEGEpochMean,'MinPeakHeight',0.5, 'MinPeakDistance',100);
[~,locs_N] = findpeaks(EEGEpochMeanInv,'MinPeakHeight',0.5, 'MinPeakDistance',100);
0 个评论
采纳的回答
Ameer Hamza
2020-4-19
编辑:Ameer Hamza
2020-4-19
First output argument gives the peak value, you have masked it with '~'
[peak_values,locs_P1P3] = findpeaks(EEGEpochMean,'MinPeakHeight',0.5, 'MinPeakDistance',100);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!