25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
328B

  1. function prologix_disconnect( prologix_connection )
  2. %PROLOGIX_DISCONNECT Summary of this function goes here
  3. % Detailed explanation goes here
  4. echotcpip('off');
  5. if nargin == 1
  6. fprintf(prologix_connection,'++loc');
  7. fclose(prologix_connection);
  8. delete(prologix_connection);
  9. end
  10. end