Create valarray of bool value by using comparison operator on another valarray : valarray « Valarray « C++






Create valarray of bool value by using comparison operator on another valarray

 
 

#include <iostream>
#include <valarray>
#include <cmath>
using namespace std;

int main()
{
  valarray<int> v(10);

  for(int i=0; i<10; i++)
      v[i] = i;

  cout << "Original contents: ";
  for(int i=0; i<10; i++)
    cout << v[i] << " ";

  valarray<bool> vb = v < 5;
  cout << "Those elements less than 5: ";
  for(int i=0; i<10; i++)
    cout << vb[i] << " ";

  cout << endl;
}

/* 
Original contents: 0 1 2 3 4 5 6 7 8 9 Those elements less than 5: 1 1 1 1 1 0 0 0 0 0

 */        
  








Related examples in the same category

1.Minus 10 from each element in a valarray
2.Use valarray + valarray to double the value for each element in valarray
3.Do sqrt for all elements in a valarray
4.Print three-dimensional valarray line-by-line
5.Print valarray as two-dimensional array
6.valarray with double value inside