-
-
Notifications
You must be signed in to change notification settings - Fork 665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(formula): add some engineering functions #3070
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #3070 +/- ##
==========================================
+ Coverage 27.62% 28.52% +0.90%
==========================================
Files 1995 2022 +27
Lines 105869 106763 +894
Branches 22837 23057 +220
==========================================
+ Hits 29242 30453 +1211
+ Misses 76627 76310 -317 ☔ View full report in Codecov by Sentry. |
View Deployment
|
@@ -422,3 +428,416 @@ export function erf(x: number): number { | |||
|
|||
return isneg ? res - 1 : 1 - res; | |||
}; | |||
|
|||
export class Complex { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This class deserve a complex.ts
file of its own.
packages/engine-formula/package.json
Outdated
@@ -65,6 +65,8 @@ | |||
"rxjs": ">=7.0.0" | |||
}, | |||
"dependencies": { | |||
"big.js": "^6.2.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this if is not in your codes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
f5aea86
to
5916fd9
Compare
该评论以下的问题均未修复 |
None of the issues below this comment have been fixed |
0487bae
to
0dc3c67
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
close #3040
Pull Request Checklist