반응형
E denoted by (theta, phi). rho is fixed as R. E in cartesian coord is R ( sin(theta) cos(phi), sin(theta) sin(phi), cos(theta) )
F on E[i] is SUM_(k!=i) X(E[i]-E[k])
----
class X3:
x, y, z
def __init__(self, x, y, z):
self.x, self.y, self.z = x, y, z
def plus(self, Y):
return X3(self.x + Y.x, self.y + Y.y, self.z + Y.z)
...
----
class E :
r = R
th = 0
ph = 0
v = X3(0, 0, 0)
def __init__(self, theta, phi):
self.th, self.ph = theta, phi
self.x, self.y, self.z = R*sin(self.th)*cos(self.ph), R*sin(self.th)*sin(self.ph), R*cos(self.th)
def update(self, t):
self = self + t * v
----
How to represent the N-gram in 2D.
Find outermost encloser of the points.
4면체로 나누기.
728x90
'프로그래밍 > 미분류' 카테고리의 다른 글
Property-based Testing (0) | 2016.07.16 |
---|---|
프로토타입 패턴은 왜 사용하는 건가? (0) | 2015.12.01 |
IPv6 주소 뒤의 퍼센트 기호의 의미는? (0) | 2015.10.28 |
Teredo 터널 어댑터란? ISATAP 란? (0) | 2015.10.27 |
우분투에서 ChaiScript 샘플 빌드하면서 만난 문제 (0) | 2015.04.28 |