photo

Akhil Thomas


Last seen: plus de 4 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

  • First Answer
  • Revival Level 1

Afficher les badges

Feeds

Afficher par

Réponse apportée
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 = ...

plus de 4 ans il y a | 0

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

plus de 4 ans il y a | 1

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

plus de 4 ans il y a | 0