tcpip_getvar.m
来自「A very small 250-line library (written e」· M 代码 · 共 20 行
M
20 行
function [varargout]=tcpip_getvar(ip_fid)%% ret = tcpip_getvar(ip_fid)%% ip_fid File id for tcpip channel.% ret Variable to return%% Get a file over network with tcpip.% Using a own protocol for this system.% se tcpip_sendvar() name=tempname; tcpip_getfile(ip_fid,[name,'.mat']); VARS={}; load(name); delete([name,'.mat']); varargout=VARS; return;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?