Borrar filtros
Borrar filtros

Calculate-Electrolytes Average value

3 visualizaciones (últimos 30 días)
Robin Beene
Robin Beene el 16 de En. de 2012
Hey all, I need to do next task:
Write a function which calculates a Electrolytes Average value.
Input data are:
1.sampled signal (vector)
2.sampling rate
3.frequency of first harmonic.
This is my solution, and I am not sure is it good.
My problem is cuz I dont use first harmonic's frequency at all, that's why I am not sure in mine solution
function Yavg=el_avg_val(y,f_s,f_o)
fmax=f_s/2;
max=1/fmax;
%I read that 10 points per max frequency's period is good enough to recognize a signal
delta=max/10;
t=0:delta:max;
N=length(t);
Yavg=sum(abs(y)/N)
end

Respuestas (1)

Robin Beene
Robin Beene el 18 de En. de 2012
or maybe like this?:
function Yavg=el_avg_val(y,f_s,f_o)
t=0:1/f_s:1/f_o;
N=length(t);
Yavg=sum(abs(y)/N)
end

Categorías

Más información sobre Statistics and Machine Learning Toolbox 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