代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/488224/6498646
m program_11_1.m
% Program 11_1
% Impulse Response Computation
%
n = input('Impulse response length desired = ');
num = input('Numerator coefficients = ');
den = input('Denominator coefficients = ');
x = [1 zero
www.eeworm.com/read/483060/6608383
cpp serialport.cpp
#include "stdafx.h"
#include "SerialPort.h"
#include
//
// Constructor
//
CSerialPort::CSerialPort()
{
m_hComm = NULL;
// initialize overlapped structure members to zero
www.eeworm.com/read/480814/6661962
m mmpsim.m
function y=mmpsim(x,tol)
%MMPSIM Polynomial Simplification, Strip Leading Zero Terms.
% MMPSIM(A) Deletes leading zeros and small coefficients in the
% polynomial A(s). Coefficients are considered sma
www.eeworm.com/read/480433/6664318
java writerthread.java
public class WriterThread extends Thread {
private int tnum,wdata; // thread number (greater than zero)
private Semaphore[] flags;
private Boolean[] continuous;
private Semaphore db;
priv
www.eeworm.com/read/478348/6715168
m mmpsim.m
function y=mmpsim(x,tol)
%MMPSIM Polynomial Simplification, Strip Leading Zero Terms.
% MMPSIM(A) Deletes leading zeros and small coefficients in the
% polynomial A(s). Coefficients are considered sma
www.eeworm.com/read/477890/6725272
cpp serialport.cpp
#include "stdafx.h"
#include "SerialPort.h"
#include
//
// Constructor
//
CSerialPort::CSerialPort()
{
m_hComm = NULL;
// initialize overlapped structure members to zero
www.eeworm.com/read/476392/6759372
m zbuildpi.m
% This program forms the complex bus impedance matrix by the method
% of building algorithm. Bus zero is taken as reference.
% This program is compatible with power flow data.
% Copyright (C) 199
www.eeworm.com/read/264889/11295834
cpp 12_3.cpp
#include
using namespace std;
class ZeroExcep //异常处理类
{public:
ZeroExcep() : message( "Exception by dividing zero!" ) {} //异常信息
const char *what() const {return message
www.eeworm.com/read/410163/11299531
cpp readreg.cpp
// This code shows how to read the registry
// However it is not used by the current Wdm1 code
void ReadReg( IN PUNICODE_STRING DriverRegistryPath)
{
// Make zero terminated copy of driver regi
www.eeworm.com/read/263959/11335761
m stats_3.m
% Script file: stats_3.m
%
% Purpose:
% To calculate mean and the standard deviation of
% an input data set, where each input value can be
% positive, negative, or zero.
%
% Reco