-
-
Notifications
You must be signed in to change notification settings - Fork 46.8k
New linear algebra algorithm #1122
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
eff2da8
Added new algorithm which takes points as an input and outputs a poly…
nic-dern 0383ba3
Rename Python-Polynom-for-points.py to python-polynom-for-points.py
nic-dern c918ca5
Update python-polynom-for-points.py
nic-dern 43351cb
Update python-polynom-for-points.py
nic-dern fe82355
Update python-polynom-for-points.py
nic-dern fc58a56
Update python-polynom-for-points.py
nic-dern f4cdeff
Update python-polynom-for-points.py
nic-dern 1f0fafc
Update python-polynom-for-points.py
nic-dern f47bdfc
Update python-polynom-for-points.py
nic-dern c346323
Add doctests and run thru psf/black
cclauss File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,103 @@ | ||
|
||
from decimal import * | ||
getcontext().prec=28 | ||
|
||
|
||
def points_to_polynomial(coordinates): | ||
#the list (coordinates) is two dimensional: [[x, y],[x, y],...] | ||
|
||
if __name__ == "__main__" : | ||
#number of points you want to use | ||
try: | ||
more_check=0 | ||
d=coordinates[0][0] | ||
for j in range(len(coordinates)): | ||
if j==0: | ||
continue | ||
if d==coordinates[j][0]: | ||
more_check+=1 | ||
solved="x="+str(coordinates[j][0]) | ||
if more_check == len(coordinates)-1: | ||
check=2 | ||
break | ||
elif more_check > 0 and more_check != len(coordinates)-1: | ||
check=3 | ||
else: | ||
check=1 | ||
|
||
if len(coordinates)==1 and coordinates[0][0]==0: | ||
check=2 | ||
solved="x=0" | ||
except: | ||
check=3 | ||
|
||
|
||
x=len(coordinates) | ||
|
||
if check==1: | ||
count_of_line=0 | ||
matrix=[] | ||
#put the x and x to the power values in a matrix | ||
while count_of_line < x: | ||
count_in_line=0 | ||
a=coordinates[count_of_line][0] | ||
count_line=[] | ||
while count_in_line < x: | ||
count_line.append(a**(x-(count_in_line+1))) | ||
count_in_line+=1 | ||
matrix.append(count_line) | ||
count_of_line+=1 | ||
|
||
count_of_line=0 | ||
#put the y values into a vector | ||
vector=[] | ||
while count_of_line < x: | ||
count_in_line=0 | ||
vector.append(coordinates[count_of_line][1]) | ||
count_of_line+=1 | ||
|
||
count=0 | ||
|
||
while count < x: | ||
zahlen=0 | ||
while zahlen < x: | ||
if count==zahlen: | ||
zahlen+=1 | ||
if zahlen==x: | ||
break | ||
bruch=(matrix[zahlen][count])/(matrix[count][count]) | ||
counting_columns=0 | ||
for i in range(len(matrix[count])): | ||
#manipulating all the values in the matrix | ||
matrix[zahlen][counting_columns]-=(matrix[count][i])*bruch | ||
counting_columns+=1 | ||
#manipulating the values in the vector | ||
vector[zahlen]-=vector[count]*bruch | ||
zahlen+=1 | ||
count+=1 | ||
|
||
count=0 | ||
#make solutions | ||
solution=[] | ||
while count < x: | ||
solution.append(vector[count]/matrix[count][count]) | ||
count+=1 | ||
|
||
count=0 | ||
solved="f(x)=" | ||
|
||
while count < x: | ||
remove_e=str(solution[count]).split("E") | ||
if len(remove_e) > 1: | ||
solution[count]=remove_e[0]+"*10^"+remove_e[1] | ||
solved+="x^"+ str(x-(count+1))+ "*" +str(solution[count]) | ||
if count+1 != x: | ||
solved+="+" | ||
count+=1 | ||
|
||
return solved | ||
|
||
elif check==2: | ||
return solved | ||
else: | ||
return "The program cannot work out a fitting polynomial." | ||
cclauss marked this conversation as resolved.
Show resolved
Hide resolved
|
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.
Uh oh!
There was an error while loading. Please reload this page.