Or login with:
| template<class T> intcountif( | int | n | |
| T* | data | ||
| T | cmp | ||
| bool | (*fctpnt)(const T&, const T&)[function pointer] | ) |
#include <iostream> #include <codecogs/statistics/countif.h> int main() { int x[12] = {3, 5, 1, 2, 6, 8, 10, 2, 2}; std::cout << "The number of elements equal to 2 is: "; std:: cout << Stats::countif<int>(12, x, 2, Stats::isEqual); std::cout << std::endl; std::cout << "The number of elements greater than 3 is: "; std::cout << Stats::countif<int>(12, x, 3, Stats::isGreater); std::cout << std::endl; std::cout << "The number of elements less than 7 is: "; std::cout << Stats::countif<int>(12, x, 7, Stats::isLess); std::cout << std::endl; return 0; }
The number of elements equal to 2 is: 3 The number of elements greater than 3 is: 4 The number of elements less than 7 is: 10
| n | the number of elements in the data array |
| data | the input array |
| cmp | the value which is compared to all values in the input array through the predicate function |
| fctpnt | the predicate function |
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
| intcountif( | int | n | |
| int* | data | ||
| const char* | cmp | ) |
#include <iostream> #include <codecogs/statistics/countif.h> int main() { int x[12] = {3, 5, 1, 2, 6, 8, 10, 2, 2}; std::cout << "The number of elements equal to 2 is: "; std::cout << Stats::countif(12, x, "=2"); std::cout << std::endl; std::cout << "The number of elements greater than 3 is: "; std::cout << Stats::countif(12, x, ">3"); std::cout << std::endl; std::cout << "The number of elements less than 7 is: "; std::cout << Stats::countif(12, x, "<7"); std::cout << std::endl; return 0; }
The number of elements equal to 2 is: 3 The number of elements greater than 3 is: 4 The number of elements less than 7 is: 10
| n | the number of elements in the data array |
| data | the input array of integers |
| cmp | a string expression giving the condition that an element of the data array should satisfy |
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
You must login to leave a messge