필터 지우기
필터 지우기

Matrix compersion for different value of coloum

조회 수: 1 (최근 30일)
Mitulkumar Vasani
Mitulkumar Vasani 2021년 2월 12일
답변: Mitulkumar Vasani 2021년 3월 29일
as a exmple i have two Matrix with diffrent size of coloums:
  1. 1*1980
  2. 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.

답변 (2개)

Walter Roberson
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));

Mitulkumar Vasani
Mitulkumar Vasani 2021년 3월 29일
is there any option to make interpolation between three histogram plot output and at the end we get one main histogram plot.
is there any matlab function avalible for this?
i used Histogramm2 function and genrate 3 plot. and i want to interpolate this three plot in one as answer.

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by