Akhil Thomas
Followers: 0 Following: 0
Statistica
MATLAB Answers
0 Domande
3 Risposte
RANK
21.915
of 296.109
REPUTAZIONE
2
CONTRIBUTI
0 Domande
3 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
1
RANK
of 155.365
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
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 = ...
oltre 4 anni fa | 0
Risposto
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
oltre 4 anni fa | 1
Risposto
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 ...
oltre 4 anni fa | 0