代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/263959/11335708
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/409142/11345492
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);
www.eeworm.com/read/347943/11626579
m my_fprintf.m
function my_fprintf(fid, varargin)
%This function is needed because Matlab R2006B does not support fprintf with
%fid=0, i.e., no output. This is a workaround.
%
%Internal function of SeDuMi.
%
www.eeworm.com/read/232704/14185266
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);
www.eeworm.com/read/128477/14294647
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/124283/14578806
c fprintf_source.c
/* block/fprintf_source.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the term
www.eeworm.com/read/215382/15063161
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);
www.eeworm.com/read/212047/15166746
c fprintf_source.c
/* block/fprintf_source.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the term
www.eeworm.com/read/470917/1441844
c nldbl-fprintf.c
#include "nldbl-compat.h"
attribute_hidden
int
fprintf (FILE *stream, const char *fmt, ...)
{
va_list arg;
int done;
va_start (arg, fmt);
done = __nldbl_vfprintf (stream, fmt, arg);
va_end