just realized my 2D function is good, but isn't exactly the function used by Baker
This commit is contained in:
parent
f31f628b73
commit
00b564880a
@ -22,9 +22,13 @@ def rms(errors):
|
|||||||
|
|
||||||
def baker_exact_2D(X):
|
def baker_exact_2D(X):
|
||||||
"""
|
"""
|
||||||
the exact function (2D) used from baker's article (for testing)
|
the exact function (2D) used from baker's article (for testing, slightly
|
||||||
|
modified)
|
||||||
"""
|
"""
|
||||||
x ,y = X
|
x ,y = X
|
||||||
|
|
||||||
|
# TODO: this is not baker's function!! this is:
|
||||||
|
# np.power(np.sin(x*np.pi/2.0) * np.sin(y*np.pi/2.0),2)
|
||||||
answer = np.power((np.sin(x * np.pi) * np.cos(y * np.pi)), 2)
|
answer = np.power((np.sin(x * np.pi) * np.cos(y * np.pi)), 2)
|
||||||
log.debug(answer)
|
log.debug(answer)
|
||||||
return answer
|
return answer
|
||||||
|
Loading…
Reference in New Issue
Block a user