photo

Akhil Thomas


Last seen: presque 5 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
3 Réponses

RANG
21 948
of 297 805

RÉPUTATION
2

CONTRIBUTIONS
0 Questions
3 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
1

RANG
 of 20 473

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 159 570

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Answer
  • Revival Level 1

Afficher les badges

Feeds

Afficher par

Réponse apportée
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 = ...

presque 5 ans il y a | 0

Réponse apportée
Caesarts Cipher encryption algorithm assistance
function y = caesar2(ch, key) v = ' ' : '~'; [~, loc] = ismember(ch, v); v2 = circshift(v, -key); y = v2(loc); end

presque 5 ans il y a | 1

Réponse apportée
Caesarts Cipher encryption algorithm assistance
function txt = caesar(txt,key) txt = double(txt) + key; first = double(' '); last = double('~'); % use mod to shift the ...

presque 5 ans il y a | 0