-
Notifications
You must be signed in to change notification settings - Fork 47
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
cartesian to polar program #101
Open
hyderr
wants to merge
58
commits into
hr21-patch-1
Choose a base branch
from
master
base: hr21-patch-1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
How to deal with text data.
Update README.md
Updated contributor list.
Updated supporting data for ML, Deep Learning and Data Science learning curve.
Added reference links for ML roadmap
Contributor Update
Add an example for parsing arguments
add sentiment analysis notebook
Added program to change 2 no.s without arithmetic operations
Added some advanced python inbuild functions explanation and implemet…
User name included
added link to Fast.ai
Update README.md
this is the program for rock, paper, scissor
create rock, paper,scissor program
just added a link in README.md
Added demo for basic operations on files
Added sample Text processing
Update README.md
Update README.md
Updating the Random Forest Classifier as a Bagging Ensemble example.
…estclassifier Ensemble Model Update
Ensemble Bagging Model using Random Forest Classifier
Adding jupyter notebook for basics of XGBoost
Create test.py
I have added a KMP Algorithm . This algorithm used for searching a pattern/string in a another text/string using an array of prefixes and suffixes. It overrides the Naive algorithm and improves the worst case to O(n).
Implemented KMP algorithm in python
Update and rename test.py to next_smallest_palindromic.py
Create readme.md
basics syntax
Add files via upload
Add files via upload
Add files via upload
Add files via upload
Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.1.2 to 5.4. - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES) - [Commits](yaml/pyyaml@5.1.2...5.4) Signed-off-by: dependabot[bot] <[email protected]>
…ons/sample_oo_dashboard/pyyaml-5.4 Bump pyyaml from 5.1.2 to 5.4 in /sample applications/sample_oo_dashboard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
import math
i=12.0
q=5.0
print "Cartesian: (%.1f,%.1f)" %(i,q)
print "Polar: r = %.1f" %math.sqrt(math.pow(i,2) + math.pow(q,2)) + ", Theta = %.1f" %math.degrees(math.atan(q/i)) + " degrees"