MATLAB: Convert byte to double

byte conversion

Hi, I have somae data in a byte format that i want to convert to double format. Does anyone know how to do this in matlab?
I have read the data in to a char, where every 8 characters should represent a double.
My data looks like this :
QAAAAAAAaIBAAAAAAADQgUAAAAAAAHCCQAAAAAAAsINAAAAAAAAohEAAAAAAAKCEQAAAAAAA4IVAAAAAAABgiEAAAAAAAJCKQAAAAAAAMItAAAAAAADQi0AAAAAAAGCNQAAAAAAAUI5A
/Malte

Best Answer

I found out that the string was in base64 code, which i have decoded using the base64decode function from: http://code.google.com/p/fieldtrip/source/browse/trunk/external/gifti/@gifti/private/base64decode.m?r=3261
I could then transform the uint8 array produced by base64decode with the typecast function.