Rsq
Ensor.Rsq(Ensor* pEnsor1, Ensor* pEnsor2)
Parameters
- Ensor* pEnsor1
Ensor.new() 함수등에 의해 만들어진 포인터를 입력합니다(data1).
- Ensor* pEnsor2
Ensor.new() 함수등에 의해 만들어진 포인터를 입력합니다(data 2).
Return Value
Ensor* pRetEnsor : correlation coefficient를 가진 Ensor*를 반환합니다.
Remarks
The equation for the correlation coefficient is:
where
are the sample means Average(data1) and Average(data2).
Rsq returns r2, which is the square of this correlation coefficient.
Examples1
function MathEquation()
local ensor_x = ensor.new("{2,3,9,1,8,7,5}")
local ensor_x2 = ensor.new("{6,5,11,7,5,4,4}")
local ensor_y = ensor.Rsq(ensor_x,ensor_x2)
ensor.Table(ensor_y)
end