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