세기조건 명령

GeoGebra Manual
이동: 둘러보기, 검색
Accessories dictionary.png
이 페이지는 공식 매뉴얼에서 출력과 pdf를 위한 부분입니다. 일반 사용자들은 이 페이지를 편집할 수 없습니다. 만일 이 페이지에서 오류를 발견하였으면, 연락하여 주시기 바랍니다.사용자에 의해 편집 가능한 버전으로 이동
CountIf( <Condition>, <List> )
Counts the number of elements in the list satisfying the condition.
예:
  • CountIf(x < 3, {1, 2, 3, 4, 5}) gives you the number 2.
  • CountIf(x < 3, A1:A10), where A1:A10 is a range of cells in the spreadsheet, counts all cells whose values are less than 3.
노트: For list of numbers arbitrary condition may be used. For list of other objects one can use only conditions of the form x==constant or x!=constant.


CountIf( <Condition>, <Variable>, <List> )
As above, using a more flexible syntax.
예:
Given points P, Q, R CountIf(x(A) < 3, A, {P, Q, R}) will count only the points whose x-coordinate is less than 3. The variable A is replaced in turn with P then Q then R for the check. Therefore CountIf(x(A) < 3, A, {(0, 1), (4, 2), (2, 2)}) yields the number 2.
© 2024 International GeoGebra Institute