代码搜索:fprintf

找到约 10,000 项符合「fprintf」的源代码

代码结果 10,000
www.eeworm.com/read/144399/12796963

m demoh2osat.m

function demoH2Osat % demoH2OSat Fit saturation pressure versus temperature for water % % Synopsis: demoH2Osat % % Input: none % % Output: Print curve fit coefficients. Plot fit fcn vs. o
www.eeworm.com/read/144399/12796966

m demosicmod.m

function demoSiCmod % demoSiCmod Least squares fit of bulk modulus of SiC versus temperature % % Synopsis: demoSiCmod % % Input: none % % Output: Plot of line fit to data [t,D,labels] = l
www.eeworm.com/read/144399/12796982

m demotcouple.m

function demoTcouple % demoTcouple Linear and quadratic fits to J-type thermocouple data % % Synopsis: tcouple % % Input: None % % Output: Print fit coefficients and residuals. Plot fit
www.eeworm.com/read/144399/12797246

m nmmcheck.m

function nmmCheck(verbose) % nmmCheck Verify installation of NMM toolbox % % Synopsis: nmmCheck % nmmCheck(verbose) % % Input: verbose = (optional) flag to turn off/on printing of
www.eeworm.com/read/144399/12797276

m equaltest.m

% Script to demonstrate equality of two floating point numbers x = tan(pi/6); y = sin(pi/6)/cos(pi/6); if x==y fprintf('x and y are equal\n'); else fprintf('x and y are not equal: x = %e
www.eeworm.com/read/144399/12797344

m newtonng.m

function x = newton(fun,x0,xtol,ftol,verbose,varargin) % newtonNG Newton's method to find a root of the scalar equation f(x) = 0, % no global (NG) variables are needed to pass % % Sy
www.eeworm.com/read/144399/12797382

m solvespeed.m

function solveSpeed % solveSpeed Measure elapsed time and flop rate for solving Ax=b % % Synopsis: solveSpeed % % Input: none % % Output: Print out of elapsed time, flop rate and memory use
www.eeworm.com/read/144399/12797390

m demonewtonsys.m

function x = demoNewtonSys(maxit,x0) % demoNewtonSys Solve a 2-by-2 nonlinear system by Newton's method % The system is % 1.4*x1 - x2 = 0.6 %
www.eeworm.com/read/144399/12797394

m vectorsequence.m

function vectorSequence(x,n) % vectorSequence Behavior of a vector sequence x.^k in different p-norms % % Synopsis: vectorSequence % vectorSequence(x) % vectorSequence(x,n
www.eeworm.com/read/144399/12797437

m demossub.m

function x = demoSSub(maxit,x0) % demoSSub Solve a 2-by-2 nonlinear system by successive substitution % The system is % 1.4*x1 - x2 = 0.6 % x1^2 - 1.6*x