how can i create a string buffer with n size
Mostra commenti meno recenti
for example the string is aagttctactaac i want to split into aa,ag,gt,tt,tc,ct,ta etc
Risposte (1)
KSSV
il 17 Mag 2017
str = 'aagttctactaac' ;
iwant = [str(1:end-1)' str(2:end)'] ;
Categorie
Scopri di più su Genomics and Next Generation Sequencing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!