Snip.m Snip elements out of vectors/matrices

Versione 1.3.0.0 (3,39 KB) da Nicolas
Solves problems s.a. 'remove all nan' from a vector, 'get rid of 14th row of matrix' with low effort
2,2K download
Aggiornato 16 set 2013

Visualizza la licenza

I often end up having to remove certain elements from a vector, or I don't need certain lines from my data and similar problems. While matlab has great matrix manipulation capability, I find myself continuously forgetting which [(:,)):,) combination would do the trick nicely and then proceed to Google. Therefore, my first attempt at creating something useful turns matlab logic upside down: Imagine your vector is on a strip of paper, and you cut out all the unwanted nan's. Then paste the rest together. Same with matrices. Also works with specifying the rows and columns to get rid of etc.

This aim is to remove large accumulations of logical index descriptions (bracket-clusters) and provide an easy command instead:

snip(input,snipthis)

While it is not perfect (written in a flurry), it worked for me so far - so please provide feedback to make it better. It should work with everything necessary, except self-defined data-structures.

Cita come

Nicolas (2025). Snip.m Snip elements out of vectors/matrices (https://it.mathworks.com/matlabcentral/fileexchange/41941-snip-m-snip-elements-out-of-vectors-matrices), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2012a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Numeric Types in Help Center e MATLAB Answers
Riconoscimenti

Ispirato: Circles overlap remover

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.3.0.0

13. Sept. 2013: Included inf and i/j as possible arguments to remove infinity and complex elements, too.

1.1.0.0

corrected 'end' to 'last', as end was obviously interfering with standard instruction.

1.0.0.0