Community Profile

photo

Akhil Thomas


Last seen: 거의 4년 전 2020년부터 활동

Followers: 0   Following: 0

통계

  • First Answer
  • Revival Level 1

배지 보기

Feeds

보기 기준

답변 있음
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년 전 | 0

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

거의 4년 전 | 1

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

거의 4년 전 | 0