Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
The formula of the corr function is given in Mathcad help. But correl is not given. I know corr is pearson coeffcient but what is correl ? What does it represent?
corr(A, B) - returns the Pearson's r correlation coefficient of the elements in A and B;
correl(vx, vy) - returns the correlation of vectors vx and vy. Result is a vector for which each element contains the summed vector product of vx and a shifted version of vy;
correl2d(M, K) - returns the 2D correlation of matrix M with kernel K. The resulting matrix contains the summed element-wise product of K overlapped with a subset of M.