MATLAB Mex Socket Wrapper Library

眉间皱痕 提交于 2019-11-28 05:36:54

问题


Have anybody written a POSIX socket wrapping library for MATLAB using Mex?

I basically want to open, write and read. Both sync and asynchronous alternatives would be nice. My main target platform is Linux. I know Mex and I know POSIX sockets. I just want to make certain that nobody else has done this already?


回答1:


If you want to work with sockets, you have two options:

1) use Java capabilities from inside MATLAB (see this answer here on SO for a quick example):

  • TCP/IP Socket Communications in MATLAB
  • TCP/IP Socket Communications in MATLAB using Java Classes

2) use C MEX-wrappers:

  • msocket
  • TCP/UDP/IP Toolbox

I also think that the Instrument Control Toolbox includes support for TCP UDP communication.



来源:https://stackoverflow.com/questions/7626854/matlab-mex-socket-wrapper-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!