-
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.
* chore: 📝 add data tome analysis header to library json #3 * feat: 🧑💻 add size_of_memory method add size_of_memory method that returns the memory usage of the array #6 * fix(DataTomeAnalysis): 🚑 fix std method fix std method to divide by the point_count, not by the reserved size * test(DataTomeMvAvg): ✅ add test to memory size and partials memory size * fix(DataTomeMvAvg): 🚑 case when array is resized to a smaller size * refactor(DataTomeMvAvg): 🔒 change resize to grow method Change resize to only allow the array to get bigger, avoiding data inconsistencies among other features and future additions. Also, shrinking the array implies deleting data as a non-clear side effect. * fix(DataTomeAnalysis): 🚑 change partial_std and partial_var to divide by partial_point_count, not by the allocated size * feat(DataTomeAnalysis): ✨ add min and max methods Add methods to return min and max values currently stored in the array, also works on partials. #6 * docs: 📝 improve readme readability Added ## Getting Started list to make install links easier to find and understand. * docs: 📝 add github repo url on readme * docs: 📝 make docs github repo url more clear * feat(DataTomeAnalysis): ✨ add median Add median and partial_median methods. #6 * chore: 🔧 allow extensions.json and settings.json on commits Allow extensions.json and settings.json on commits to a more standard dev experience among contributors.
- Loading branch information
1 parent
f8cc588
commit 7132181
Showing
10 changed files
with
272 additions
and
37 deletions.
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
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,11 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"platformio.platformio-ide", | ||
"vivaxy.vscode-conventional-commits" | ||
], | ||
"unwantedRecommendations": [ | ||
"ms-vscode.cpptools-extension-pack" | ||
] | ||
} |
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,12 @@ | ||
{ | ||
"files.associations": { | ||
"array": "cpp", | ||
"string_view": "cpp", | ||
"initializer_list": "cpp", | ||
"utility": "cpp" | ||
}, | ||
"conventionalCommits.scopes": [ | ||
"DataTomeAnalysis", | ||
"DataTomeMvAvg" | ||
] | ||
} |
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
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=DataTome | ||
version=1.0.1 | ||
version=1.4.3 | ||
author=Alexandre Hiroyuki Yamauchi <[email protected]> | ||
maintainer=Alexandre Hiroyuki Yamauchi <[email protected]> | ||
sentence=Moving Average and other statistical functions compatible with any number type. | ||
|
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
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
Oops, something went wrong.