Numerics library
Da cppreference.com.
                    
                                        
                    < cpp
                    
                                                            
                    |  | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. 
 La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. | 
Il C + + numerici libreria include le funzioni matematiche ei tipi, così come ottimizzati array numerici e il supporto per la generazione di numeri casuali.
Original:
The C++ numerics library includes common mathematical functions and types, as well as optimized numeric arrays and support for random number generation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
| Indice | 
[modifica] Comuni funzioni matematiche
L'intestazione 
cmath fornisce libreria standard C funzioni matematiche come std::fabs, std::sqrt e std::sin.Original:
The header 
cmath provides libreria standard C funzioni matematiche such as std::fabs, std::sqrt, and std::sin.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] I numeri complessi
| Defined in header  <complex> | |
|  un tipo di numero complesso  Original:  a complex number type  The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe template) | |
[modifica] Array numerici
| Defined in header  <valarray> | |
|  matrici numeriche e fette di array  Original:  numeric arrays and array slices  The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe template) | |
[modifica] Generici operazioni numeriche
| Defined in header  <numeric> | |
| (C++11) |  riempie un intervallo con incrementi successivi del valore iniziale  Original:  fills a range with successive increments of the starting value  The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) | 
|  riassume una serie di elementi  Original:  sums up a range of elements  The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) | |
|  calcola il prodotto interno di due gamme di elementi  Original:  computes the inner product of two ranges of elements  The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) | |
|  calcola le differenze tra elementi adiacenti in un intervallo  Original:  computes the differences between adjacent elements in a range  The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) | |
|  calcola la somma parziale di una serie di elementi  Original:  computes the partial sum of a range of elements  The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) | |
[modifica] Pseudo-casuale generazione
L'intestazione 
random definisce pseudo-generatori di numeri casuali e distribuzioni numeriche. Il cstdlib intestazione include anche C-stile generazione di numeri casuali tramite std::srand e std::rand.Original:
The header 
random defines pseudo-generatori di numeri casuali e distribuzioni numeriche.  The header cstdlib also includes C-style random number generation via std::srand and std::rand.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Compilare aritmetica razionale del tempo (dal C++11)
L'intestazione 
ratio fornisce tipi e funzioni per la manipolazione e lo stoccaggio in fase di compilazione rapporti.Original:
The header 
ratio provides tipi e funzioni per la manipolazione e lo stoccaggio in fase di compilazione rapporti.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Virgola mobile ambiente
L'intestazione 
fenv definisce bandiere e le funzioni relative alla eccezionale virgola mobile stato, come troppo pieno e la divisione per zero.Original:
The header 
fenv defines bandiere e le funzioni relative alla eccezionale virgola mobile stato, such as overflow and division by zero.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.


