mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
76a6216cf7
It uses its own API which I packed between MTApi5 and MatLab. Possible that this is useless, but errors from the .NET assembly are more tradable.
11 lines
300 B
Matlab
11 lines
300 B
Matlab
function header = http_createHeader(name,value)
|
|
%http_createHeader Simple function for creating input header to urlread2
|
|
%
|
|
% header = http_createHeader(name,value)
|
|
%
|
|
% CODE: header = struct('name',name,'value',value);
|
|
%
|
|
% See Also:
|
|
% urlread2
|
|
|
|
header = struct('name',name,'value',value); |