substitute for discretize command

조회 수: 4 (최근 30일)
pavan sunder
pavan sunder 2016년 11월 18일
댓글: johnson saldanha 2018년 11월 6일
discretize function was available in new version of matlab..but i have older version (R2014b)in my desktop. i cannot install new version into my desktop..please help my with an alternative function for discretize in matlab

답변 (1개)

Walter Roberson
Walter Roberson 2016년 11월 18일
For equal intervals, separated by delta:
discrete_x = floor( (x - minimum_allowed_x) ./ delta ) .* delta + minimum_allowed_x;
For unequal intervals in which the left edges are given by the vector edges and the last entry of edges is the upper bound:
[~, ~, bin] = histcounts( x, edges );
discrete_x = edges(bin);
  댓글 수: 5
Walter Roberson
Walter Roberson 2016년 12월 20일
[~, discrete_x] = histc(x, edges);
discrete_x(discrete_x == length(edges)) = length(edges)-1;
discrete_x(discrete_x == 0) = NaN;
johnson saldanha
johnson saldanha 2018년 11월 6일
may i know how can i be able to get the 2nd column from the x matrix in discrete_x

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

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by