Files of a 5*2^n VHDL entity using Winograd5 and radix2 implementations
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
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