i have a vector x=[1 2 3 1 4 4.3 3 3.7 4.8],consider a variable k=4:0.2:5, how many values of x are greater than k(i.e) so the output will show [2 1 1 0 0]
조회 수: 1 (최근 30일)
이전 댓글 표시
i have a vector x=[1 2 3 1 4 4.3 3 3.7 4.8], consider a variable k=4:0.2:5, I need to find how many values of x are greater than k(i.e)
so the output will show [2 1 1 0 0]
댓글 수: 0
채택된 답변
Blackadder
2016년 10월 8일
편집: Blackadder
2016년 10월 9일
First, with x and k as defined by you, the output should be
[2 2 1 1 0 0]
You can compute this by
x = [1 2 3 1 4 4.3 3 3.7 4.8];
k = 4:0.2:5;
sum(bsxfun(@gt,x',k))
댓글 수: 0
추가 답변 (1개)
Andrei Bobrov
2016년 10월 9일
편집: Andrei Bobrov
2016년 10월 9일
sum(x(:) > k(:)') % in r2016b
댓글 수: 2
Blackadder
2016년 10월 9일
Interesting! This does not work in r2014a ("Matrix dimensions must agree" error).
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!