필터 지우기
필터 지우기

distance between the rows of a matrix and the mean

조회 수: 2 (최근 30일)
pavlos
pavlos 2012년 2월 29일
Hello,
Consider a 100x20 matrix.
How`s the euclidean distance between each row (1x20) and the mean (average) of the rows (1x20) is calculated?
Thank you.
Best,
Pavlos

채택된 답변

Walter Roberson
Walter Roberson 2012년 2월 29일
For the situation you describe:
size = nthroot(sum(realpow(bsxfun(@plus,-Rows,mean(Rows)),ndims(Rows)),ndims(Rows)),ndims(Rows));
There are more compact ways to express this, and there are code sequences that are faster, but this particular code sequence is constructed for higher accuracy.
(This particular code sequence is also constructed to be a heartache to anyone using it for homework without understanding it thoroughly. Markers will not be amused.)
  댓글 수: 2
pavlos
pavlos 2012년 3월 1일
Thank you very much.
It works great, but the code line is to long to include it
in a script file.
Best,
Pavlos
Walter Roberson
Walter Roberson 2012년 3월 1일
The line length restriction in script files and function files is about 40000 characters.
Besides, if you are doing an assignment that prohibits you from writing function files, then you have bigger problems to deal with than a long line of code.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Phased Array Design and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by