matlab--UDP发送接收

m函数中UDP接收和发送#

%接收
ipA='192.168.0.5'; 
portA=8080;
ipB='192.168.0.3';
portB=8080;
handles.udpB=udp(ipA,portA,'LocalPort',portB);//远程ip,远程端口,本机ip,本机端口
set(handles.udpB,'TimeOut',10);
set(handles.udpB,'InputBufferSize',8192);
fopen(handles.udpB);
 
for t = 1:15
	a1 = str2double(fscanf(handles.udpB));
	set(handles.edit1,'string',a1);
	pause(0.1);
end
fclose(handles.udpB);

%发送
ipA = '127.0.0.1'; 
portA = 8009;
ipB = '127.0.0.1'; 
portB = 8006;
handles.udpA = udp(ipB,'RemotePort',portB,'LocalPort',portA);
set(handles.udpA,'OutputBufferSize',8192);
set(handles.udpA,'TimeOut',100);
fopen(handles.udpA);
for t = 1:100
    x = sin(t);
    set(handles.edit1,'String',x);
    v1=str2double(get(handles.edit1,'string'));
    w1(t)=v1;
    fprintf(handles.udpA,v1);
    pause(0.1);
e

你可能感兴趣的:(#,matlab,matlab)