Displaying 1 result from an estimated 1 matches for "koordinaten".
Did you mean:
koordinate
2009 Jul 06
1
how to apply a self-written function to a data frame
...abst=function(gx, gy, tx, ty, pp){
# Datum 22.6. 09 - 17:24
# gx, gy Gaze-Spur
# fx, fy Fixationspunkt
# tx, ty Target-Position
# pp Prime-Position (von 0 - 3)
px = 2*(pp%%2)-1
if (pp > 1) {px = -px }
py = 2*(pp%/%2)-1
px = fx + px * abs(tx - fx)
py = fy + py * abs(ty - fy)
# Koordinaten des Mittelpunkts
fx=512
fy=393
# Transformation auf Mittelpunkt (von links/oben auf Zentrum von T und P)
# tx=tx+90
# ty=ty-90
# px=px+90
# py=py-90
# Gerade f-t
a=(ty-fy)/(tx-fx)
b=(fx*ty-fy*tx)/(tx-fx)
# Senkrechte von gaze auf Gerade f-t
as=-1/a
bs=gy-gx*as
# Abstand gaze von Gerade f-t
lx=-...