Given a period and a sequence of values, calculates the moving average of the input. E.g., given a period of 4 and a sequence of { 2.0, 8.0, 12.0, 10.0, 6.0, 4.0, 14.0 }, the result of this function is { 8.0, 9.0, 8.0, 8.5 }.
8 people like thisPosted: 14 years ago by Brett V. Forsgren
Takes a list of (quantity/amount and price/rate) as decimals, and gives a weighted average
0 people like thisPosted: yesterday by Tuomas Hietanen
Converting F# LINQ queries to SQL: - Basic example of simple group-by - Also if you want to have multiple aggregates (SUM, COUNT, MAX, MIN, AVG, ...) in the same SQL-clause, that is done with groupBy over a constant value.
2 people like thisPosted: 6 years ago by Tuomas Hietanen