代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/144399/12797503
m demoode45opts.m
function demoODE45opts(rtol,atol,nref)
% demoODE45opts Integrate dy/dx = -y; y(0) = 1 with ode45 and options
%
% Synopsis: demoODE45opts
% demoODE45opts(rtol)
% demoODE45
www.eeworm.com/read/144399/12797524
m demoode45args.m
function demoODE45args(alpha)
% demoODE45args Integrate dy/dt = -alpha*y; y(0) = 1 with variable alpha
%
% Synopsis: demoODE45
% demoODE45(alpha)
%
% Input alpha = (optional)
www.eeworm.com/read/144399/12797606
m compsplintflops.m
function compSplintFlops
% compSplintFlops Show flops savings due to sparse storage in spline interp
%
% Synopsis: compSplintFlops
%
% Input: None
%
% Output: Table of flops to compute spli
www.eeworm.com/read/144399/12797630
m trapzdattest.m
function trapzDatTest
% trapzDatTest Verify trapzDat function for different types of input
%
% Synopsis: trapzDatTest
%
% Input: none
%
% Output: Print out of test results
% --- Int
www.eeworm.com/read/144399/12797676
m recursiveindent.m
function recursiveIndent(maxLevel,level)
% recursiveIndent Demonstration of a recursive function
%
% Synopsis: recursiveIndent
% recursiveIndent(maxLevel)
%
% Input: maxLevel =
www.eeworm.com/read/144399/12797697
m demoadaptgk.m
function demoAdaptGK
% demoAdaptGK Compare adaptive Gauss-Kronrod quadrature with quadl
%
% Synopsis: demoAdaptGK
%
% Input: none
%
% Output: Tables and plots demonstrating convergence o
www.eeworm.com/read/144399/12797711
m demogauss.m
function demoGauss(np,nn)
% demoGauss Use Gauss-Legendre quadrature to integrate x*exp(-x) on [0,5]
%
% Synopsis: demoGauss
% demoGauss(np)
% demoGauss(np,nn)
%
% Input:
www.eeworm.com/read/144399/12797717
m makeglagtable.m
function makeGLagTable(n)
% makeGLagTable Create a table of Gauss-Laguerre nodes and weights
% suitable for copy/paste into the GLagTable.m function
%
% Synopsis: makeGLagTable
%
www.eeworm.com/read/144361/12800757
c bug1.c
#include
#include
#include
int
main (void)
{
char *bp;
size_t size;
FILE *stream;
int lose = 0;
stream = open_memstream (&bp, &size);
fprintf (stream, "he
www.eeworm.com/read/331899/12802457
cpp sgalib.cpp
// SGAlib.cpp : implementation file
//
#include "stdafx.h"
//#include "SGA for testing.h"
#include "SGAlib.h"
#include "iostream.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
st