Encryption of a string

조회 수: 7 (최근 30일)
Roger Nadal
Roger Nadal 2019년 11월 23일
댓글: Walter Roberson 2019년 11월 24일
I have to create a function which take 2 input one is n number and on e is message if I call function (4,’hi’) it will return next 4 char of ‘h’ and ‘i’ so output will be ‘lm’

채택된 답변

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 11월 23일
편집: JESUS DAVID ARIZA ROYETH 2019년 11월 23일
solution:
function output=yourfunction(n,e)
output=char(double(e)+n)
end
  댓글 수: 2
Walter Roberson
Walter Roberson 2019년 11월 24일
The code JESUS DAVID ARIZA ROYETH provided does not care how long the input vector of characters is.
His code is correct for the problem as you defined it earlier.
You appear to now be wanting some kind of "wrap-around", but you have not defined it.
What should the function do with upper-case letters? What should it do with lower-case letters? What should it do with digits? What should it do with space characters? What should it do with punctuation such as period?
JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 11월 24일
not "bmd" but "alc"
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Roger Nadal
Roger Nadal 2019년 11월 24일
I want remove n number of random letter between the message for example ‘habcefghlnmolasdo’ should return ‘hello’
  댓글 수: 3
Roger Nadal
Roger Nadal 2019년 11월 24일
If I have given n is 3 so it should remove 3 random in between characters but this code is not removing the last random characters
Walter Roberson
Walter Roberson 2019년 11월 24일
output = input_message(1:n+1:end)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Encryption / Cryptography에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by