Matrix compersion for different value of coloum
조회 수: 1 (최근 30일)
이전 댓글 표시
as a exmple i have two Matrix with diffrent size of coloums:
- 1*1980
- 1*2201
how can i compare both matrix with slicing command or any other command and then can i take mean value from both matrix. that's why i need both coloum value similar in matrix.
댓글 수: 0
답변 (2개)
Walter Roberson
2021년 2월 12일
Perhaps something like:
shorter_size = min(numel(First), numel(Second));
meanFirst = mean(First(1:shorter_size));
meanSecond = mean(Second(1:shorter_size));
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!