Question about program NoiseAccelerometer #254
-
Beta Was this translation helpful? Give feedback.
Answered by
tmayerguerr
May 8, 2024
Replies: 1 comment 1 reply
-
Hi Kyrie714, The problem is that your PSD expression is also evaluated for the 0 Hz frequency: best regards |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Kyrie714
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Kyrie714,
The problem is that your PSD expression is also evaluated for the 0 Hz frequency:
"Warning: PSD at frequency 0 Hz is nan"
This might be solved by extending your expression by a condition like:
if(freq==0, 0, your expr)
best regards
Torsten