I am encrypting my audio file in matlab using AES Algo. When I run my this algo it is giving me the error......plaintext should be a vector ( not a cell array) of 16 elements...i have sort this error now i again run it but now it saying this
Index exceeds matrix dimensions.
Error in aes_demo (line 30)
x= x(1:16);
this error is also also sorted out now this is error is appearing
Undefined function 'x' for input arguments of type 'double'.
Error in aes_demo (line 31)
x = x(1:16);
What should i do now ?