How to get the sum of the maximum absolute amplitudes located in the positive and negative sides of Y-axis of a signal ?

1 view (last 30 days)
I'm working on MUAP signal and I dont know how to get the maximum of its absolute amplitudes located in the positive and negative sides of Y-axis.

Accepted Answer

Star Strider
Star Strider on 16 May 2016
Regardless of sign, the amplitude is:
signal = ...; % MUAP Vector
amp_max = max(signal) - min(signal);
Definition: MUAP is the ‘motor unit action potential’ in electromyography.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!