write data to header file
조회 수: 11 (최근 30일)
이전 댓글 표시
i have 1x800 double and i need to outpu in header file all this values like this; float sineTable[800] = { /* values go here */ };
댓글 수: 0
채택된 답변
Akira Agata
2019년 3월 4일
How abou the following?
% Sample data
data = rand(1,800);
% Arrange it to comma-separated string
str = num2str(data);
str = regexprep(str,'\s+',',');
% Save as 'sample.h' file
fid = fopen('sample.h','w');
fprintf(fid,'sineTable[800] = {%s};\n',str);
fclose(fid);
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!