String replace with next character
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have to create a function which take 2 input one is n number and on e is message if I call function (5,’why’)it will return next 5 char of ‘why’so output will be ‘bmd’
0 Kommentare
Antworten (1)
JESUS DAVID ARIZA ROYETH
am 24 Nov. 2019
solution:
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu String finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!