Randomly change certain characters of a character matrix

1 view (last 30 days)
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!

Accepted Answer

Adam
Adam on 21 May 2019
Edited: Adam on 21 May 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.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!