Find Geiger counter CPM
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to find the counts per minute of a geiger counter signal using Simulink.
I managed to get the signal in a digital/binary form shown below:
I want to figure out how many pulses there are in a given timefram (1-3 seconds)
0 Kommentare
Antworten (1)
madhan ravi
am 14 Dez. 2023
Bearbeitet: madhan ravi
am 14 Dez. 2023
Let A be your Interval test signal in timeseries format. Then
Pulses_1_3secs = nnz(out.A.Data((out.A.Time >= 1) & (out.A.Time <= 3))
4 Kommentare
madhan ravi
am 15 Dez. 2023
The block under sum block in the second pic is *Unit Delay* block.
The first PWM block *Run at fixed interval* is ticked as model runs at fixed sample time.
Siehe auch
Kategorien
Mehr zu Sources finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!