photo

Akhil Thomas


Last seen: 4 years ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer
  • Revival Level 1

View badges

Feeds

View by

Answered
Write a function called blur that blurs the input image
function out = blur(img,w) % convert to double for doing calculations imgD = double(img); [row, col] = size(img); out = ...

4 years ago | 0

Answered
Caesarts Cipher encryption algorithm assistance
function y = caesar2(ch, key) v = ' ' : '~'; [~, loc] = ismember(ch, v); v2 = circshift(v, -key); y = v2(loc); end

4 years ago | 1

Answered
Caesarts Cipher encryption algorithm assistance
function txt = caesar(txt,key) txt = double(txt) + key; first = double(' '); last = double('~'); % use mod to shift the ...

4 years ago | 0