Randomly change certain characters of a character matrix

1 visualizzazione (ultimi 30 giorni)
Hi there! I have a very large (~300,000 by 16) character vector. How could I insert a section that randomly changes, say 1000 of the characters (not lines) to some other character that I define? Thank you!

Risposta accettata

Adam
Adam il 21 Mag 2019
Modificato: Adam il 21 Mag 2019
If you mean basic letters, then e.g.
idx = randi( numel( yourCharArray ), 1000, 1 );
replacementChars = char( randi( 26, 1000, 1 ) + 96 );
yourCharArray( idx ) = replacementChars;
would replace them with lower case letters from 'a' to 'z'.
If you want other characters then you can change the hard-coded 26 and 96 there as appropriate to index into the ascii character set. 26 obviously represents the 26 letters of the alphabet and 'a' is represented by ascii 97. The random integers will be created from 1 to 26 to add to this.
If you want to you can be fussier to ensure that all your 1000 indices are unique also, but I shall leave that for you.

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by