interleave

Interleave two vectors
3,3K download
Aggiornato 18 ott 2007

Nessuna licenza

This function simply interleaves two vectors. The vectors can be of different lengths. If one vector is longer, the leftover elements are just appended to the output vector. This can be done in a couple of lines if the vector lengths are known, but this function handles most of the possibilities automatically, and should save a few minutes.

Example:
z = interleave([1 2 3 4], [5 6 7 8 9 10])
= 1 5 2 6 3 7 4 8 9 10

Cita come

Jason Blackaby (2024). interleave (https://www.mathworks.com/matlabcentral/fileexchange/16919-interleave), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2007a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Riconoscimenti

Ispirato: Interleave Vectors or Matrices

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0

Followed John's suggestion to just return the other vector if one is empty instead of returning an error. Also, if both are empty, an empty vector is returned.