Udostępnij za pośrednictwem


inner_product

Oblicza sumę element-wise produktu dwóch zakresów i dodaje go do określonej wartości początkowe lub oblicza wynik procedury ogólnych, gdzie operacje binarny suma i iloczyn zastępuje innych określonych operacji binarny.

template<class InputIterator1, class InputIterator2, class Type>
   Type inner_product(
      InputIterator1 _First1, 
      InputIterator1 _Last1,
      InputIterator2 _First2, 
      Type _Val
   );

template<class InputIterator1, class InputIterator2, class Type,
   class BinaryOperation1, class BinaryOperation2>
   Type inner_product(
      InputIterator1 _First1, 
      InputIterator1 _Last1,
      InputIterator2 _First2, 
      Type _Val, 
      BinaryOperation1 _Binary_op1, 
      BinaryOperation2 _Binary_op2
   );

Parametry

  • _First1
    Wejściowy iteratora adresowania pierwszego elementu w pierwszym zakresie których wewnętrzna produktu lub ogólnych produktu wewnętrzne z drugiego zakresu jest obliczane.

  • _Last1
    Wejściowy iteratora adresowania ostatni element w pierwszym zakresie których wewnętrzna produktu lub ogólnych produktu wewnętrzne z drugiego zakresu jest obliczane.

  • _First2
    Wejściowy iteratora adresowania pierwszy element w drugim zakresie których wewnętrzna produktu lub ogólnych produktu wewnętrzne z pierwszego zakresu jest obliczane.

  • _Val
    Wartość początkowa, do którego ma zostać dodany inner produktu lub ogólnych produktu wewnętrzne między zakresy.

  • _Binary_op1
    Dla operacji binarny zastępuje operacji inner produktu kwoty stosowane do element-wise produktów generalizacji produktu wewnętrzne.

  • _Binary_op2
    Pomnożyć operacji binarny, który zastępuje element-wise operacji inner produktu z w generalizacji produktu wewnętrzne.

Wartość zwracana

Pierwsza funkcja Członkowskich zwraca sumę iloczynów element-wise i doda go do określonej wartości początkowe.Dla zakresów wartości i i bi zwraca:

_Val+ ( a1 * b1 ) + ( a2 * b2 ) +

by iteratively replacing _Val with _Val + (*ai * *bi ).

Druga funkcja Członkowskich zwraca:

     _Val_Binary_op1 ( a1 _Binary_op2b1 ) _Binary_op1 ( a2 _Binary_op2b2 ) _Binary_op1

by iteratively replacing _Val with _Val _Binary_op1 (*ai _Binary_op2 *bi ).

Uwagi

Wartość początkowa zapewnia, że będzie dobrze wynik, gdy zakres jest puste, w którym to przypadku _Val jest zwracany.Operacje binarny nie trzeba asocjacyjnej lub Przemienne.Zakres musi być prawidłowy i złożoność jest liniowa z rozmiar zakresu.Zwracany typ operatora binarnego musi być konwertowany na typu do zapewnienia zamknięcia podczas iteracji.

Przykład

// numeric_inner_prod.cpp
// compile with: /EHsc
#include <vector>
#include <list>
#include <numeric>
#include <functional>
#include <iostream>

int main()
{
   using namespace std;

   vector <int> v1, v2(7), v3(7);
   vector <int>::iterator iter1, iter2, iter3;

   int i;
   for (i = 1; i <= 7; i++)
   {
      v1.push_back(i);
   }

   cout << "The original vector v1 is:\n ( " ;
   for (iter1 = v1.begin(); iter1 != v1.end(); iter1++)
      cout << *iter1 << " ";
   cout << ")." << endl;

   list <int> l1, l2(7);
   list <int>::iterator lIter1, lIter2;

   int t;
   for (t = 1; t <= 7; t++)
   {
      l1.push_back(t);
   }

   cout << "The original list l1 is:\n ( " ;
   for (lIter1 = l1.begin(); lIter1 != l1.end(); lIter1++)
      cout << *lIter1 << " ";
   cout << ")." << endl;

   // The first member function for the inner product
   int inprod;
   inprod = inner_product(v1.begin(), v1.end(), l1.begin(), 0);

   cout << "The inner_product of the vector v1 and the list l1 is: "
        << inprod << "." << endl;

   // Constructing a vector of partial inner_products between v1 & l1
   int j = 0, parinprod;
   for (iter1 = v1.begin(); iter1 != v1.end(); iter1++) {
      parinprod = inner_product(v1.begin(), iter1 + 1, l1.begin(), 0);
      v2[j] = parinprod;
      j++;
   }

   cout << "Vector of partial inner_products between v1 & l1 is:\n ( " ;
   for (iter2 = v2.begin(); iter2 != v2.end(); iter2++)
      cout << *iter2 << " ";
   cout << ")." << endl << endl;

   // The second member function used to compute
   // the product of the element-wise sums
   int inprod2;
   inprod2 = inner_product (v1.begin(), v1.end(),
      l1.begin(), 1, multiplies<int>(), plus<int>());

   cout << "The sum of the element-wise products of v1 and l1 is: "
        << inprod2 << "." << endl;

   // Constructing a vector of partial sums of element-wise products
   int k = 0, parinprod2;
   for (iter1 = v1.begin(); iter1 != v1.end(); iter1++)
   {
      parinprod2 =
         inner_product(v1.begin(), iter1 + 1, l1.begin(), 1,
         multiplies<int>(), plus<int>());
      v3[k] = parinprod2;
      k++;
   }

   cout << "Vector of partial sums of element-wise products is:\n ( " ;
   for (iter3 = v3.begin(); iter3 != v3.end(); iter3++)
      cout << *iter3 << " ";
   cout << ")." << endl << endl;
}

Dane wyjściowe

The original vector v1 is:
 ( 1 2 3 4 5 6 7 ).
The original list l1 is:
 ( 1 2 3 4 5 6 7 ).
The inner_product of the vector v1 and the list l1 is: 140.
Vector of partial inner_products between v1 & l1 is:
 ( 1 5 14 30 55 91 140 ).

The sum of the element-wise products of v1 and l1 is: 645120.
Vector of partial sums of element-wise products is:
 ( 2 8 48 384 3840 46080 645120 ).

Wymagania

Nagłówek: <numeric>

Obszar nazw: std

Zobacz też

Informacje

inner_product (STL Samples)

Standardowa biblioteka szablonu