-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
feat: Created midpoint integration numerical method #1785
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
Conversation
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.
Hey there! Thank you for submitting a PR! 😄 Sadly, the documentation is not up to our standards. Please update the file accordingly. Let us know if you need any help here or in our Discord server. 😃
…into midpoint_branch
…Plus into midpoint_branch
Updated documentation to match the standards |
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.
Great work! 😄👍
Please enable GitHub Actions in your repository of this fork in this link: https://github.com/ggkogkou/C-Plus-Plus/actions
// Find the step | ||
h = (b-a)/N; | ||
|
||
test(N, h, a, b, used_argv_parameters); /// run self-test implementations |
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.
test(N, h, a, b, used_argv_parameters); /// run self-test implementations | |
test(N, h, a, b, used_argv_parameters); // run self-test implementations |
Co-authored-by: David Leal <[email protected]>
Co-authored-by: David Leal <[email protected]>
Co-authored-by: David Leal <[email protected]>
Done. |
Co-authored-by: David Leal <[email protected]>
Done |
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.
Awesome work! You've done amazing work, and it's been your
first contribution here! We hope you keep contributing! 😄👍🎉
After this PR is merged, you can ask for the
contributor role in our Discord server! 🚀
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.
Could you please fix the CodeQL warnings here?
Let us know if you need any help here or in our Discord server. 😃
Done |
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 🚀 Please review @ayaankhan98, @mishraabhinn, and @Amino19. Thanks. 🙂
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! Thanks for your contribution.
Description of Change
Created midpoint integration numerical method for easy integral approximation.
Tests included (4 functions, integration interval specified).
Correction to the PR #1773
Checklist
Notes:
Numerical method. Separated this from PR #1773 to match the repositories demands. Participating on hacktoberfest.