sumCFt
sumCFt is a notational shorthand used in mathematics and programming to denote a discrete weighted sum of two sequences or time-dependent values, typically written as sum_{t in T} C_t F_t. Here, C_t represents a coefficient sequence and F_t a sequence or signal evaluated at index t. The index set T is usually a finite interval of integers, such as t = 1, 2, ..., n, though variants exist for different domains.
In written form, sumCFt is commonly expressed as sum_t C_t F_t or Σ_t C_t F_t. The camel-case
sumCFt is linear in each argument: for sequences a_t, b_t and scalars α, β, sumCFt(α a_t + β b_t) = α sumCFt(a_t)
Let C = [2, 3, 1] and F = [5, 7, 4]. Then sumCFt = 2*5 + 3*7 + 1*4 = 10
sumCFt appears in weighted sums, inner product calculations, projections of a function onto a basis, and various