matlab之使⽤TCPIP协议进⾏通信
有时需要数据进⾏实时处理,使⽤TCP/IP协议是很好的选择,前提是主机和从机要在同⼀个⽹络下。 matlab的tcpip函数做了很好的封装,通过⾃带的⽰例我们可以清楚看到该如何使⽤。
%Start a TCP/IP echo server and create a TCPIP object.
echotcpip('on',4012)
t = tcpip('localhost',4012); %实际换成host的ip地址和端⼝
%Connect the TCPIP object to the host.
fopen(t)tcpip协议pdf
%Write to the host and read from the host.
fwrite(t,65:74) %注意,这⾥是ASCII码
A = fread(t, 10);
% Disconnect the TCPIP object from the host and stop the echo server.
fclose(t)
echotcpip('off')
在⼿机或者其他电脑上安装⽹络调试助⼿,可以在matlab端进⾏调试。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论