class Statsample::Factor::Equimax

Public Instance Methods

rotation_name() click to toggle source
# File lib/statsample/factor/rotation.rb, line 180
def rotation_name
  "Equimax"
end
x(a,b,c,d) click to toggle source
# File lib/statsample/factor/rotation.rb, line 174
def x(a,b,c,d)
  d-(@m*a*b / @n.to_f)
end
y(a,b,c,d) click to toggle source
# File lib/statsample/factor/rotation.rb, line 177
def y(a,b,c,d)
  c-@m*((a**2-b**2) / (2*@n.to_f))
end