代码搜索:zero

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

代码结果 10,000
www.eeworm.com/read/158379/11622372

c zero_pad.c

#include void main () { int value = 5; printf ("%01d\n", value); printf ("%02d\n", value); printf ("%03d\n", value); printf ("%04d\n", value); }
www.eeworm.com/read/259865/11761189

c zero_pad.c

#include void main () { int value = 5; printf ("%01d\n", value); printf ("%02d\n", value); printf ("%03d\n", value); printf ("%04d\n", value); }
www.eeworm.com/read/156653/11786208

m gen_zero.m

% Chapter 7 Matlab Figure on % A general Zero Constellation % subplot(1,1,1) r = 0.6; theta = 50*pi/180; z1 = r*exp(j*theta); % an arbitrary zero location z2 = 1/z1; %
www.eeworm.com/read/342845/11995840

m gen_zero.m

% Chapter 7 Matlab Figure on % A general Zero Constellation % subplot(1,1,1) r = 0.6; theta = 50*pi/180; z1 = r*exp(j*theta); % an arbitrary zero location z2 = 1/z1;
www.eeworm.com/read/341997/12048090

bin zero-00.bin

www.eeworm.com/read/255568/12073502

c pb_zero.c

/* LibTomPoly, Polynomial Basis Math -- Tom St Denis * * LibTomPoly is a public domain library that provides * polynomial basis arithmetic support. It relies on * LibTomMath for large integer s
www.eeworm.com/read/152557/12105919

html zero-length.html

Using the GNU Compiler Collection (GCC)
www.eeworm.com/read/152288/12124153

m zero1.m

function F = zero1(x) F = x.^3-2*x-5;
www.eeworm.com/read/152288/12124166

m zero2.m

function F = zero2(x) % 注意,变量为x(1)和 x(2),不要写成x和y F = sin(x(1).^2-x(2));
www.eeworm.com/read/152288/12124260

m zero3.m

function F = zero3(x) F = 2*x(1)+3*x(2)^2+x(1)*x(3); %变量为x(1)和、x(2)、x(3),不要写成x、y、z