valarray::operator/=
Divide um elementos prudente valarray operando dos elementos de um valarray especificado ou um valor do tipo de elemento.
valarray<Type>& operator/=(
const valarray<Type>& _Right
);
valarray<Type>& operator/=(
const Type& _Right
);
Parâmetros
- _Right
O valarray ou o valor de um tipo de elemento idêntico ao operando valarray que deve ser dividido, em elementos prudente, no operando valarray.
Valor de retorno
Um valarray cujos elementos sejam o quociente - prudente de valarray de operando dividido por _Right.
Exemplo
// valarray_op_ediv.cpp
// compile with: /EHsc
#include <valarray>
#include <iostream>
int main( )
{
using namespace std;
int i;
valarray<double> vaL ( 6 ), vaR ( 6 );
for ( i = 0 ; i < 6 ; i += 2 )
vaL [ i ] = 100;
for ( i = 1 ; i < 6 ; i += 2 )
vaL [ i ] = -100;
for ( i = 0 ; i < 6 ; i++ )
vaR [ i ] = 2*i;
cout << "The initial valarray is: ( ";
for (i = 0 ; i < 6 ; i++ )
cout << vaL [ i ] << " ";
cout << ")." << endl;
cout << "The initial Right valarray is: ( ";
for (i = 0 ; i < 6 ; i++ )
cout << vaR [ i ] << " ";
cout << ")." << endl;
vaL /= vaR;
cout << "The element-by-element result of "
<< "the quotient is the\n valarray: ( ";
for (i = 0 ; i < 6 ; i++ )
cout << vaL [ i ] << " ";
cout << ")." << endl;
}
Requisitos
Cabeçalho: <valarray>
namespace: STD