Help with "simple" function and array problem.
Posted by Phustercluck@reddit | learnprogramming | View on Reddit | 7 comments
The problem was split into three parts. First part is creating two variables with a length of 100 and then print their shape.
import numpy as np
X_n = np.array(range(100))
Y_n = np.array(range(100))
print(X_n.shape)
print(Y_n.shape)
Next it was defining two functions f_x and f_y for the following equations and an added rule that it should include the parameter r, number n for numbering the points, and the previous coordinate x_n or y_n. The functions
fx(x_n) = x_n - ((2*pi)/100) * sin*((2*pi*n)/100) *r
fy(y_n) = y_n + ((2*pi)/100) * cos*((2*pi*n)/100) *r
import numpy as np
def f_x(r, n, x_n):
'''Compute the x-coordinate x_(n+1) from x_n'''
return x_n - ((2*np.pi)/100)*np.sin((2*np.pi*n)/100) * r
import numpy as np
def f_y(r, n, y_n):
'''Compute the y-coordinate y_(n+1) from y_n'''
return y_n + ((2*np.pi)/100)*np.cos((2*np.pi*n)/100) * r
These were autocorrected and were correct.
The last part was determining the first 100 coordinates and saving them in X_n and Y_n using our work from the previous problems. r =6/4.
So this is what I have, and it's apparently wrong. I am absolutely losing my shit over it because I have no idea what I'm doing wrong and I have so much other stuff to study.
import numpy as np
# Create numpy arrays to save computed points
X_n = np.array(range(100), dtype=float)
Y_n = np.array(range(100), dtype=float)
# Set parameter r
r = 6 / 4
# Define functions to compute the coordinates
def f_x(r, n, x_n):
return x_n - ((2*np.pi)/100)*np.sin((2*np.pi*n)/100) * r
def f_y(r, n, y_n):
return y_n + ((2*np.pi)/100)*np.cos((2*np.pi*n)/100) * r
# Compute the coordinates
for n in range(99):
X_n[n+1] = f_x(r, n, X_n[n])
Y_n[n+1] = f_y(r, n, Y_n[n])
#round to three decimals
print(round(X_n[0], 3), round(X_n[25], 3), round(X_n[50], 3), round(X_n[75], 3))
print(round(Y_n[0], 3), round(Y_n[25], 3), round(Y_n[50], 3), round(Y_n[75], 3))
AlexanderEllis_@reddit
"it's apparently wrong"- what's wrong about it? What does it do instead of what it's supposed to do?
Phustercluck@reddit (OP)
It’s supposed to calculate the first 100 coordinates based on those functions, n=0,1,2,3….99 and then print a few examples. The autocorrect doesn’t give much detail, but I’m assuming it’s that the values are incorrect.
AlexanderEllis_@reddit
What is "the autocorrect"? You said you're not getting "much" detail, but does that mean you're getting some detail that you're not posting about what went wrong? You have the functions that are meant to calculate the numbers, so worst case you should be able to print out and directly investigate to see how it might compare to what you're expecting. Either way, your first step should be figuring out what specifically is wrong- an error message maybe?
Phustercluck@reddit (OP)
Couldn’t think of a good word. It’s an automated grading thing. If the code doesn’t function, it’ll give you the error and line etc, but this just tells me “not correct, try again”. This just tells me the code functions, but either doesn’t spit out the correct values, or doesn’t fulfil the requirements in some way. All the information I’m given, I’ve written here. It’s all just very frustrating
AlexanderEllis_@reddit
I see, thanks for the details. Try running the code yourself instead of through the automated grading thing, and look at the output- there's a few things you do know about what the output should look like even without manually calculating the values the function should return, there's useful information to be found by looking at that. Another thing to think about- you know that the second problem was correct, which implies that that functions are returning the correct values, right? Assuming that every
n
you input gives the right output, think about what else could be wrong or missing with what you're outputting.Phustercluck@reddit (OP)
You're right. Makes me think that, yes, I am just missing something completely given that I know someone used
in their correct answer. Thanks for the guidance.
AutoModerator@reddit
It seems you may have included a screenshot of code in your post "Help with "simple" function and array problem.".
If so, note that posting screenshots of code is against /r/learnprogramming's Posting Guidelines (section Formatting Code): please edit your post to use one of the approved ways of formatting code. (Do NOT repost your question! Just edit it.)
If your image is not actually a screenshot of code, feel free to ignore this message. Automoderator cannot distinguish between code screenshots and other images.
Please, do not contact the moderators about this message. Your post is still visible to everyone.
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.