02-06-2023 07:47 AM
Hi, I want to calculate the rate of change of continued data reading, for example, taking the last samples ( assume sample every minute = 15 samples ) and then calculating the rate of change/slop.
like the slop of the curve >>>and that curve in 15 min span with data always updated with new samples ... do I need to use shift registers any idea?
02-06-2023 07:52 AM
Hi seola,
@seola30 wrote:
do I need to use shift registers …?
Well, yes.
(You may use PtByPt-DataQueue, which uses shift registers internally, to keep an array of recent samples.)
02-09-2023 02:24 AM
Hi, I want to calculate the rate of change of continued data reading, for example, taking the last samples ( assume sample every minute = 15 samples ) and then calculating the rate of change/slop.
like the slop of the curve >>>and that curve in 15 min span with data always updated with new samples ... do I need to use shift registers any idea?
02-09-2023 03:01 AM