選択できるのは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