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

📄 tcpip_sendvar.m

📁 A very small 250-line library (written entirely in MATLAB) that allows multiple MATLAB programs to t
💻 M
字号:
function ret=tcpip_sendvar(ip_fid,varargin)%%  ret = tcpip_sendvar(ip_fid,var)%%  ip_fid    File id for tcpip channel.%  var       Variable to send%  ret       Return value.%% Get a file over network with tcpip.% Using a own protocol for this system.% se tcpip_sendfile()    ret=0;    VARS=varargin;  name=[tempname,'.mat'];  save(name,'VARS');  tcpip_sendfile(ip_fid,name);  delete(name);

⌨️ 快捷键说明

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