Skip to content
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
wants to merge 58 commits into
base: hr21-patch-1
Choose a base branch
from
Open

cartesian to polar program #101

wants to merge 58 commits into from

Conversation

hyderr
Copy link
Contributor

@hyderr hyderr commented Sep 30, 2020

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"

sonniki and others added 30 commits October 6, 2019 13:50
Updated contributor list.
Updated supporting data for ML, Deep Learning and Data Science learning curve.
Added reference links for ML roadmap
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…
added link to Fast.ai
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
harsh2ai and others added 28 commits October 16, 2019 20:28
Updating the Random Forest Classifier as a Bagging Ensemble example.
Ensemble Bagging Model using Random Forest Classifier
Adding jupyter notebook for basics of XGBoost
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).
Update and rename test.py to next_smallest_palindromic.py
…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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.