25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

12 satır
311B

  1. function error = prologix_error(addr)
  2. %PROLOGIX_ERROR Summary of this function goes here
  3. % Detailed explanation goes here
  4. t = prologix_connect();
  5. fprintf(t, ['++addr ', num2str(addr)]);
  6. fprintf(t, 'system:error?');
  7. fprintf(t, '++read');
  8. error = fscanf(t);
  9. prologix_disconnect(t);
  10. end