Community Profile

photo

Juan Sebastián Hincapié Montes


Last seen: 5 months ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Trying to make a function for Caesar Encryption -- need help.
I've got a solution to this problems... hope this help you! function [coded] = caesar(v ,sa) secret = double(v); code = ones(...

3 years ago | 0

Answered
caesar cyphor encryption problem .
function [coded] = caesar(v ,sa) secret = double(v); code = ones(1, length(v)); for ii=1:length(secret) if secret(...

3 years ago | 0