Vous suivez désormais cette soumission
- Les mises à jour seront visibles dans votre flux de contenu suivi
- Selon vos préférences en matière de communication il est possible que vous receviez des e-mails
NEWVALUES = VECTORFILL(VALUES, FILLVALUE)
NEWVALUES = VECTORFILL(VALUES, FILLVALUE,DIRECTION)
NEWVALUES = VECTORFILL(VALUES, FILLVALUE,DIRECTION,INDICES)
DIRECTION can be either -1,0, or 1, and specifies whether to fill the numbers with the last non-FILLVALUE (-1) or the next non-FILLVALUE (1), or the nearest non-FILLVALUE (0 - default). The user can also specify which indices of VALUES operate on (default is all indices).
Example:
x = vectorfill([2 2 -1 3 3 3 3 -1 4 4 4], -1, 1)
x =
2 2 3 3 3 3 3 4 4 4 4
Written in c, so the operation is fast. Type "mex vectorfill.c" in matlab before use.
You might need a free compiler if it was not installed with your matlab:
http://www.mathworks.com/support/compilers/R2012b/win64.html
Citation pour cette source
Mattias Karlsson (2026). vectorfill (https://fr.mathworks.com/matlabcentral/fileexchange/39731-vectorfill), MATLAB Central File Exchange. Extrait(e) le .
Informations générales
- Version 1.0.0.0 (3,41 ko)
Compatibilité avec les versions de MATLAB
- Compatible avec toutes les versions
Plateformes compatibles
- Windows
- macOS
- Linux
| Version | Publié le | Notes de version | Action |
|---|---|---|---|
| 1.0.0.0 |
