在Matlab中接收来自多个源的UDP数据
我需要在 Matlab 中设置一个 UDP 读取器来接收来自多个源的数据。我通常将其用于单个数据源:
[packet,~,~,senderaddress]=fread(s,s.BytesAvailable)
问题是我想避免等待超时,我没有终止数据到达,并且数据包的大小未知。还有其他人遇到过这个问题吗?谢谢
I need to set up a UDP reader in Matlab that receives data from a number of sources. I typically use this for a single data source:
[packet,~,~,senderaddress]=fread(s,s.BytesAvailable)
The problems are that I want to avoid waiting for the timeout, I don't have terminated data arriving, and packets are of unknown sizes. Has anyone else had this problem? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 Java 的网络功能。 UDP 文件交换 执行一些 Java 脚本来访问 UDP 套接字。定义数据包的最大大小(UDP 数据报最长可达 65536 字节)和首选超时。
Why not using Java's networking capabilities. UDP File Exchange does some Java scripting to access a UDP socket. Define the max size of your packets (UDP datagrams can be up to 65536 bytes long) and the preferred timeout.