You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given two data series A(t), and B(t) as the input, create a new data series Y by correlating A and B, i.e.
# pseudocode
correlate(A, B):
result := empty list
for ptX in A:
ptY := find point in B with ptY.t = ptX.t
if no point found: continue
point := { x = ptX.value, y = ptY.value }
result += point
return result
The text was updated successfully, but these errors were encountered:
Given two data series
A(t)
, andB(t)
as the input, create a new data seriesY
by correlating A and B, i.e.The text was updated successfully, but these errors were encountered: