How to sum particular values on the y axis
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1372959/image.jpeg)
I wish to sum the y axis values for the frequencies between 300Hz to 1000Hz, how do I do this?
0 comentarios
Respuestas (1)
Torsten
el 3 de Mayo de 2023
Movida: Torsten
el 3 de Mayo de 2023
X = 0:1300;
Y = rand(size(X))
s = sum(Y(X>=300 & X<=1000))
7 comentarios
Torsten
el 3 de Mayo de 2023
Editada: Torsten
el 3 de Mayo de 2023
I wish to sum the value of each curve, I have used your code to do this. Does the code now look fine to sum over these ten curves?
Yes, if by "summing" you really mean "summing the Y-values". If you mean "integrate over the Frequency", you will have to multiply the result by "sampleFreq/burst_length". Or use "trapz".
Ver también
Categorías
Más información sobre Fourier Analysis and Filtering 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!