I am new to Matlab and I am trying to solve the following scenario.
I have large strings that need to be encoded mainly for encoding in order to get the value. To perform the operation, I use the following code fragment:
clear;clc; first ='abceeeeeeeeeeeeeeeddddddddddddd'; second='defrrrrrrrrrrrrttttttttttttuuuu'; result=bitxor(uint8(double(first)) , uint8(double(second)));
In the above code, I hardcode the string value. I was wondering if Matlab defines a string size limit? If someone can help me understand this value more in terms of bytes, it will be very helpful.
Thanks and Regards, Bhavya
source share