MATLAB: Serial communication with hex code

serial communication

I have one device using an asynchronous HDLC framing. And my matlab versions are 2016a and 2015b.
This device is connected to my computer via USB, but this is recognized as COM port device due to USART driver.
Anyway, I need to send hex code "0x7E, 0x23, 0x02, 0x00, 0x7D, 0x31, 0x24, 0x01, 0x0C, 0x25, 0x01, 0x0E, 0x26, 0x01, 0x03, 0x3A, 0x7E" to this device and receive response. (Terminator is 0x7E which means "~" or "126").
Can you help to make this serial communication code?
For serial setthing, I set the code like below, but I am asking this question because my code with fopen/query or fwrite and fread did not work properly.
=======================================
clear;
instrreset();
s = serial ('COM3','baudrate',115200);
set(s,'parity','none');
set(s,'databit',8);
set(s,'stopbit',1);
set(s,'timeout',1);
===============================================

Best Answer

Perhaps:
Str = '7E2302007D3124010C25010E2601033A7E'
D = sscanf(Str, '%2x');
fwrite(s, D, 'uint8')
This is a bold guess only. I'm still confused when somebody wants to send hex codes. Hex codes are actually a string, a vector of type char. I assume that the bytes should be sent, which are represented by these hex codes. Or do you really want to send the characters '7', 'E', ... ?
Note: I cannot test this code. Please try if it must be '%.2X' instead of '%2X'.
Related Question