代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/358669/10182471
m saveinr.m
%SAVEINR Write an INRIMAGE format file
%
% SAVEINR(filename, im)
%
% Saves the specified image array in a INRIA image format file.
%
% SEE ALSO: loadinr
%
% Copyright (c) Peter Corke, 1999 Ma
www.eeworm.com/read/357459/10208985
m cacalw.m
function [par,pos,iter,res,er,C]=cacalw(name,data1,data2,data3,data4,data5,data6)
%CACAL Calibration routine for computing the camera parameters using weighted
%least squares. The initial values are
www.eeworm.com/read/357459/10208992
m cacal.m
function [par,pos,iter,res,er,C]=cacal(name,data1,data2,data3,data4,data5,data6)
%CACAL Calibration routine for computing the camera parameters. The
%initial values are solved by using the DLT method
www.eeworm.com/read/280882/10282125
m gthtmltable.m
function [out] = GTHTMLtable(varargin)
% GTHTMLtable - Generate an HTML page with a table of a matrix.
%
% function FName = GTHTMLtable({NAME
www.eeworm.com/read/162511/10298906
c misc.c
/* Miscellaneous stuff that doesn't fit anywhere else.
Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
Free Software Foundation, Inc.
Contributed by Andy Vaught
This file is part of GCC.
G
www.eeworm.com/read/162288/10318668
m admas4.m
function [EX,T,U,E]=adams4(a,b,c,h);
n=round((b-a)/h)+1;
t=zeros(n,1);
u=zeros(n,1);
e=zeros(n,1);
ex=zeros(n,1);
t(1,1)=a;
u(1,1)=c;
ex(1)=exat(0);
for i=1:3
t(i+1)=t(i)+h;
u(i+1)=
www.eeworm.com/read/280348/10337594
c filemon.c
//======================================================================
//
// FILEMON.c - main module for VxD FILEMON
//
// SysInternals - www.sysinternals.com
// Copyright (C) 1996-2000 Mark Ru
www.eeworm.com/read/425546/10348921
m bipartitematchingdemoplot.m
function bipartiteMatchingDemoPlot(sources, detections, a)
hold on
p1 = size(sources,2);
p2 = size(detections,2);
for i=1:p1
h=text(sources(1,i), sources(2,i), sprintf('s%d', i));
set(h, 'color',
www.eeworm.com/read/161485/10404522
m test_laplacian_do.m
% Demo of the Laplacian pyramid functions
x = load_image('lena', 256);
x = double(x)/256;
% Laplacian decomposition using 9/7 filters and 5 levels
pfilt = '9/7';
n = 5;
y = fwt_pyramid_do(x, p
www.eeworm.com/read/424752/10416203
c qc-driver.c
/* Start of file */
/* {{{ [fold] Comments */
/*
* qc-usb, Logitech QuickCam video driver with V4L support
* Derived from qce-ga, linux V4L driver for the QuickCam Express and Dexxa QuickCam
*