Compartilhar via


valarray::operator*=

Em os elementos de um valarray especificado ou um valor de tipo de elemento, em elementos prudente, um operando valarray.

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 multiplicar, em elementos que é prudente, o operando valarray.

Valor de retorno

Um valarray cujos elementos são elementos do produto prudente operando valarray e _Right.

Exemplo

// valarray_op_emult.cpp
// compile with: /EHsc
#include <valarray>
#include <iostream>

int main( )
{
   using namespace std;
   int i;

   valarray<int> vaL ( 8 ), vaR ( 8 );
   for ( i = 0 ; i < 8 ; i += 2 )
      vaL [ i ] =  2;
   for ( i = 1 ; i < 8 ; i += 2 )
      vaL [ i ] =  -1;
   for ( i = 0 ; i < 8 ; i++ )
      vaR [ i ] =  i;
   
   cout << "The initial valarray is: ( ";
      for ( i = 0 ; i < 8 ; i++ )
         cout << vaL [ i ] << " ";
   cout << ")." << endl;

   cout << "The initial Right valarray is: ( ";
      for ( i = 0 ; i < 8 ; i++ )
         cout << vaR [ i ] << " ";
   cout << ")." << endl;

   vaL *= vaR;
   cout << "The element-by-element result of "
        << "the multiplication is the\n valarray: ( ";
      for ( i = 0 ; i < 8 ; i++ )
         cout << vaL [ i ] << " ";
   cout << ")." << endl;
}
  
  
  

Requisitos

Cabeçalho: <valarray>

namespace: STD

Consulte também

Referência

valarray Class