-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ee7c3a
commit 9deeaea
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
(1) Make the "time_average" fully depend on the "time_integrals" output | ||
- We can change the "TimeSeries" output one element at a time (dividing by dt) in order to minimize allocations | ||
|
||
(2) Make the "time_integrals" less dependent on the total cumulative integral | ||
- Reconstruct local cumulative integrals to interpolate | ||
- Use the existing time_integral(ts::AbstractTimeSeries{T}, Δt::TimeInterval) implementation which is efficient | ||
- Consider adding an "indhint" argument to make it more efficient (with an indhint output) | ||
- Modify the interpolated results by subtracting the first value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters