Stay organized with collections
Save and categorize content based on your preferences.
C++ Reference: class IncrementalAverage
Note: This documentation is automatically generated.
Manages incremental averages.
Method |
AddData | Return type: void Arguments: double new_record |
CurrentAverage | Return type: double |
IncrementalAverage | Return type: explicit Arguments: double initial_average Initializes the average with 'initial_average' and number of records to 0.
|
IncrementalAverage | |
NumRecords | Return type: int64_t |
Reset | Return type: void Arguments: double reset_value Sets the number of records to 0 and average to 'reset_value'.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-08-06 UTC.
[null,null,["Last updated 2024-08-06 UTC."],[],["The `IncrementalAverage` class in C++ manages running averages. Key actions include initializing the average with a given value, adding new data points via `AddData`, retrieving the current average with `CurrentAverage`, and obtaining the number of records using `NumRecords`. The `Reset` method allows resetting the average and the record count to zero. There is also a method to construct the class with an initial average value.\n"]]