您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
234B

  1. function [ t ] = keysight_connect( ipaddress )
  2. %KEYSIGHT_CONNECT Summary of this function goes here
  3. % Detailed explanation goes here
  4. if nargin < 1
  5. ipaddress = [hostname '.local.'];
  6. end
  7. t = tcpip(ipaddress,5025);
  8. fopen(t);
  9. end