You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- function [ t ] = keysight_connect( ipaddress )
- %KEYSIGHT_CONNECT Summary of this function goes here
- % Detailed explanation goes here
- if nargin < 1
- ipaddress = [hostname '.local.'];
- end
- t = tcpip(ipaddress,5025);
- fopen(t);
-
- end
|