how to write a correlation coefficient code with only the use of SUM function.

조회 수: 2 (최근 30일)
how to write a correlation coefficient code with only the use of SUM function.
YES, you can not just use
corrcoef(x,y)
mean(x) mean(y)
std(x) std(y)
to write this code.
literally writing a function to find correlation coefficient with SUM as the only intrinsic function

답변 (1개)

Walter Roberson
Walter Roberson 2019년 11월 1일
That is not possible. The Pearson Correlation Coefficient cannot be calculated without multiplications or divisions.
Notice the use of . That is defined as which is something that cannot be calculated without at least one division.
  댓글 수: 2
Walter Roberson
Walter Roberson 2019년 11월 1일
Yes you did!! I quote,
with only the use of SUM function
In MATLAB, multiplication and division are functions. The .* operator is formally known as times and the ./ operator is formally known as rdivide . .* and ./ are "syntax sugar" .
A .* B
is exactly the same as times(A, B) -- a function call.
In MATLAB, neverly everything is a function. Subscripting is a function. Assignment is the function whose formal name is subsasgn() .
These are the only things in MATLAB that are not functions:
>> iskeyword
ans =
20×1 cell array
{'break' }
{'case' }
{'catch' }
{'classdef' }
{'continue' }
{'else' }
{'elseif' }
{'end' }
{'for' }
{'function' }
{'global' }
{'if' }
{'otherwise' }
{'parfor' }
{'persistent'}
{'return' }
{'spmd' }
{'switch' }
{'try' }
{'while' }

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by