Files of a 5*2^n VHDL entity using Winograd5 and radix2 implementations
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.

11 satır
294B

  1. function write_file(input, file, nb_words_per_line, words_format)
  2. input_format = '';
  3. for i=1:nb_words_per_line
  4. input_format = strcat(input_format,words_format);
  5. end
  6. input_format = strcat(input_format,'\n');
  7. fin = fopen(file,'w');
  8. fprintf(fin,input_format,input);
  9. fclose(fin);
  10. end