Additional Information
Presented below is a DIAdem example that incorporates Python. You may utilize this example to evaluate the format and structure of the output.
channel_values = dd.ChannelsToArray("'[1]/Time','[1]/Speed'")
print(channel_values)
Example VBScript code to concatenate two channels and export its values to one-dimensional array:
set ChnResult = ChnConcatenateChannels("[1]/Time", "'[1]/Speed'", False, False, False)
dim chn_values
chn_values = ChannelsToArray(ChnResult(1))
'call YourMatlabFunction(chn_values)