代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/351636/3103447
f ieeeck.f
INTEGER FUNCTION IEEECK( ISPEC, ZERO, ONE )
*
* -- LAPACK auxiliary routine (version 3.0) --
* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,
* Courant Institu
www.eeworm.com/read/257015/4366729
m dscale.m
function [X,Xscale]=dscale(X)
% DSCALE
% ------
% [X,Xscale]=dscale(X) scales data to zero mean and variance 1.
%
% INPUTS:
% X - Data matrix
% (dimension is # o
www.eeworm.com/read/159314/5586208
vhd _primary.vhd
library verilog;
use verilog.vl_types.all;
entity xor_gate_bit is
generic(
input_width : integer := 6;
zero : integer := 0
);
port(
a :
www.eeworm.com/read/474431/6809248
c clrarray.c
/*
** Set all of the elements of an array to zero.
*/
void
clear_array( int array[], int n_elements )
{
/*
** Clear the elements of the array starting with the last
** and working towards
www.eeworm.com/read/195390/8159508
m oversamp.m
% Program 3-4
% oversamp.m
%
% Insert zero data to input data
%
% Programmed by H.Harada
%
function [out] = oversamp( indata, nsymb , sample)
%****************** variables ***************
www.eeworm.com/read/195389/8159632
m oversamp.m
% Program 3-4
% oversamp.m
%
% Insert zero data to input data
%
% Programmed by H.Harada
%
function [out] = oversamp( indata, nsymb , sample)
%****************** variables ***************
www.eeworm.com/read/295361/8168002
c krx80600.c
/*
Exercise 8.6. The standard library function calloc(n, size) returns a pointer to n objects
of size size, with the storage initialised to zero. Write calloc, by calling
malloc or by
www.eeworm.com/read/294203/8246996
m eq.m
function r = eq(a, b)
% == Equal.
% (Quaternion overloading of standard Matlab function.)
%
% If one of the operands is not a quaternion and the other has zero vector part,
% the result is obtained b
www.eeworm.com/read/393253/8300220
m oversamp.m
% Program 3-4
% oversamp.m
%
% Insert zero data to input data
%
% Programmed by H.Harada
%
function [out] = oversamp( indata, nsymb , sample)
%****************** variables ***************
www.eeworm.com/read/172473/9706241
m bisect.m
function [c,err,yc]=bisect(f,a,b,delta)
%Input - f is the function input as a string 'f'
% - a and b are the left and right endpoints
% - delta is the tolerance
%Output - c is the zero
%