⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tcpip_status.m

📁 A very small 250-line library (written entirely in MATLAB) that allows multiple MATLAB programs to t
💻 M
字号:
function status=tcpip_status(fid)  % status=tcpip_status(fid) Return a status value for tcpip connection.%% Mainly usefull when you whant to detect that a connection is broken.% (return value 0)%% Possible status values:%% TCPIP_NOCONNECT   0 Not connected. Perhaps it has been broken. Close it!% TCPIP_SERVSOCKET  1   Server socket waiting for connections.% TCPIP_STDIO       5   Connected to file (not implemented)% TCPIP_CLIENT      10  Connected as client. Used tcpip_open.% TCPIP_SERVER      12  Connected as server  Used tcpip_servopen or tcpip_listen    status=tcpipmex(6,fid);  return;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -