Statistik
0 Fragen
3 Antworten
RANG
21.988
of 300.343
REPUTATION
2
BEITRÄGE
0 Fragen
3 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
1
RANG
of 20.926
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 168.172
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
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 = ...
mehr als 5 Jahre vor | 0
Caesarts Cipher encryption algorithm assistance
function y = caesar2(ch, key) v = ' ' : '~'; [~, loc] = ismember(ch, v); v2 = circshift(v, -key); y = v2(loc); end
mehr als 5 Jahre vor | 1
Caesarts Cipher encryption algorithm assistance
function txt = caesar(txt,key) txt = double(txt) + key; first = double(' '); last = double('~'); % use mod to shift the ...
mehr als 5 Jahre vor | 0

