Espaces de noms
Variantes
Affichages
Actions

cpp/numeric/valarray/resize : Différence entre versions

De cppreference.com
< cpp‎ | numeric‎ | valarray
m (r2.7.3) (robot Ajoute : de, en, es, it, ja, pt, ru, zh)
m (Use {{lc}}. Update links. Various fixes.)
 
Ligne 13 : Ligne 13 :
  
 
===Paramètres===
 
===Paramètres===
{{param list begin}}
+
{{begin}}
{{param list item | count |{{tr| nouvelle taille du récipient| new size of the container}}}}
+
{{| count |{{tr| nouvelle taille du récipient| new size of the container}}}}
{{param list item | value |{{tr| la valeur pour initialiser les éléments nouveaux | the value to initialize the new elements with }}}}
+
{{| value |{{tr| la valeur pour initialiser les éléments nouveaux | the value to initialize the new elements with }}}}
{{param list end}}
+
{{end}}
  
 
===Retourne la valeur===
 
===Retourne la valeur===
Ligne 28 : Ligne 28 :
  
 
===Voir aussi===
 
===Voir aussi===
{{dcl list begin}}
+
{{begin}}
{{dcl list template | cpp/numeric/valarray/dcl list size}}
+
{{| cpp/numeric/valarray/size}}
{{dcl list end}}
+
{{end}}
  
 
[[de:cpp/numeric/valarray/resize]]
 
[[de:cpp/numeric/valarray/resize]]

Version actuelle en date du 2 juillet 2013 à 05:42

 
 
Bibliothèque Numerics
Fonctions mathématiques courantes
Virgule flottante environnement
Nombres complexes
Tableaux numériques
La génération de nombres pseudo-aléatoires
Moment de la compilation arithmétique rationnelle (C++11)
Génériques des opérations numériques
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iota (C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
std::valarray
Les fonctions membres
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Tiers fonctions
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Classes d'aide
Original:
Helper classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
void resize( std::size_t count, T value = T() );
Redimensionne l'valarray pour contenir les éléments count .
Original:
Resizes the valarray to contain count elements.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si la taille actuelle est inférieure à count, des éléments supplémentaires sont ajoutés et initialisé avec value .
Original:
If the current size is less than count, additional elements are appended and initialized with value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si la taille actuelle est supérieure à count, le valarray est réduite à ses éléments count premier .
Original:
If the current size is greater than count, the valarray is reduced to its first count elements.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Sommaire

[modifier] Paramètres

count -
nouvelle taille du récipient
Original:
new size of the container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
value -
la valeur pour initialiser les éléments nouveaux
Original:
the value to initialize the new elements with
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Retourne la valeur

(Aucun)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Exemple

[modifier] Voir aussi

renvoie la taille du valarray
Original:
returns the size of valarray
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]