User defined function encryption

1 vue (au cours des 30 derniers jours)
Rick
Rick le 24 Juin 2014
Hello,
I am working on problem 2 in the attached PDF. I am trying to understand what they are saying in (b) as far as creating the double array. Does that mean I concatenate strIn with keyL? Also, how do I remove the last few characters in keyL so that numel(keyL) == numel(strIn)
Here is what I have so far, it's far from complete but I don't know if I should use a while statement.
function strOut = Convert(strIn,key,mode)
keyL = [key key];
if mode == 1
while (numel(keyL) >= numel(strIn)) == 1
numel(keyL) == numel(strIn)
for i = 1:numel(keyL)

Réponses (0)

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by