Akhil Thomas
Followers: 0 Following: 0
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 = ...
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 前 | 0
已回答
Caesarts Cipher encryption algorithm assistance
function y = caesar2(ch, key) v = ' ' : '~'; [~, loc] = ismember(ch, v); v2 = circshift(v, -key); y = v2(loc); end
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 前 | 1
已回答
Caesarts Cipher encryption algorithm assistance
function txt = caesar(txt,key) txt = double(txt) + key; first = double(' '); last = double('~'); % use mod to shift the ...
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 前 | 0