Split string of hex shorts into cell values
Show older comments
I have a field from an ODBC connection where the data of a curve is stored in the following way:
- range for single value is signed 16bit (-32768 to 32767)
- representation in HEX 4 "digits" with padding left zeros (8000 to 7FFF)
- all values are concatenated to a string in the database
- no delimiters
- number of elements is string length/4
Example:
- Values (123, 456, -17000)
- String contains: "007B01C8BD98"
Now I would like to us this data inside Matlab.
I could prepare the data and create a translation database. But I would prefere a direct approach.
All string splitting operators make use of delimiters. But this does not work here.
What is the Matlab/Database Explorer way to get access to that data ? Are there any ready to use functions ?
Accepted Answer
More Answers (2)
ES
on 21 Mar 2017
One suggestion would be, since the width of each value is fixed, you can do something like this..
string = '007B01C8BD98ABCDEFA';%Example data
idx = 1:4:length(string);
for iloop=1:length(idx)-1
value(iloop) = hex2dec(string(idx(iloop):idx(iloop+1)-1))
end
2 Comments
Guillaume
on 21 Mar 2017
You could avoid the loop entirely (see my answer), but if you're going to use a loop, you should at least predeclare value
value = zeros(1, numel(string)/4);
Clearly your code does not decode properly negative values.
Note that using string as a variable nam is not recommended in version >= R2016b, since it's now the name of a very useful class.
Bartosch Slomak
on 21 Mar 2017
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!