代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/452710/7434766
c,v fprintf.c,v
head 1.1;
access;
symbols;
locks
dls:1.1; strict;
comment @ * @;
1.1
date 97.09.21.19.27.40; author dls; state Dist;
branches;
next ;
desc
@@
1.1
log
@pre-3e code
@
text
www.eeworm.com/read/439651/7704117
m fprintf01.m
x = 1:10;
y = [x; sqrt(x)];
fid = fopen('squareRootTable.txt', 'w');
fprintf(fid, 'Table of square root:\r\n');
fprintf(fid, '%2.0f => %10.6f\r\n', y);
fclose(fid);
dos('start squareRootTable.tx
www.eeworm.com/read/321972/13391622
m fprintf_example.m
x = 2 * ( 1 - 2*i )^3;
str = ['disp: x = ' num2str(x)];
disp(str);
fprintf('fprintf: x = %8.4f\n',x);
www.eeworm.com/read/142683/5762920
c,v fprintf.c,v
head 1.1;
access;
symbols;
locks
dls:1.1; strict;
comment @ * @;
1.1
date 97.09.21.19.27.40; author dls; state Dist;
branches;
next ;
desc
@@
1.1
log
@pre-3e code
@
text
@/* fprintf.c - fprintf
www.eeworm.com/read/133952/5896849
m fprintf_example.m
x = 2 * ( 1 - 2*i )^3;
str = ['disp: x = ' num2str(x)];
disp(str);
fprintf('fprintf: x = %8.4f\n',x);
www.eeworm.com/read/480149/6678134
m use_fprintf.m
%将一个平方根表写入s_table.dat
a=1:10;
b=[a;sqrt(a)];
fid=fopen('s_table.dat','w');
fprintf(fid,'table of square root:\n');
fprintf(fid,'%2.0f %6.4f\n',b);
fclose(fid);