Question: IT HAS TO BE DONE WITH MATLAB Replace each character in string s1 with the character that is shifted 13 positions from it (wrap back
IT HAS TO BE DONE WITH MATLAB

Replace each character in string s1 with the character that is shifted 13 positions from it (wrap back to the beginning if necessary). So A ? N, B ? O, and so on until Y ? L and Z ? M. Case of the output should match the case of the input, so a ? n. Non-alphabetic characters are left in place and untouched. If | s1 = 'I love MATLAB' then |S2 = 'V ybir ZNGYN0' See the Wikipedia article for more info. function s2 = rotl3(s1) s2 = s1; end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
