How do I send data between two computers using the UDP function from the Instrument Control Toolbox?
이전 댓글 표시
I am using the Instrument Control Toolbox, and I would like to communicate between two computers using the User Datagram Protocol (UDP).
채택된 답변
추가 답변 (1개)
Vinod
2014년 4월 14일
편집: MathWorks Support Team
2023년 4월 27일
0 개 추천
The UDP protocol does not guarantee transmission or order of the packets.
For most applications, you probably want to use TCPIP, like this:
댓글 수: 1
Walter Roberson
2014년 4월 14일
Real-time communications require UDP rather than TCP, as TCP has no upper bound on packet delivery time and does not allow later packets to be delivered.
TCP is also not usable for broadcasting of any kind.
Effectively all other IP protocols other than TCP are unidirectional, so there are a lot of different applications where in-order guaranteed delivery is not suitable.
카테고리
도움말 센터 및 File Exchange에서 Development Computer Setup에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!