代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/339293/12244325
m condmini.m
function gmin = condmini(Gf)
% Minimize cond.no. with input scaling
%
% Copyright 1996-2003 Sigurd Skogestad & Ian Postlethwaite
% $Id: condmini.m,v 1.1 2004/01/22 08:19:04 vidaral Exp $
[n,m]=
www.eeworm.com/read/338993/12268162
txt webbrwse控件.txt
增加Com组件Microsoft 浏览器
int Zero=0;
object OZero=Zero;
string Str="";
object OStr=Str;
axWebBrowser1.Navigate("http://localhost/myasp",ref OZero,ref OStr,ref OStr,ref OStr);
www.eeworm.com/read/337198/12384311
v alu.v
`include "defines.v"
module alu
(
out ,
zero ,
clk ,
accum ,
data ,
opcode
);
output [7:0] out ;
output zero ;
input clk ;
input [7:0] accum ;
input [7:0
www.eeworm.com/read/337096/12391496
cpp exceed.cpp
// exceed.cpp -- exceeding some integer limits
#include
#define ZERO 0 // makes ZERO symbol for 0 value
#include // defines INT_MAX as largest int value
int main()
{
www.eeworm.com/read/250562/12399753
cpp 3_34.cpp
#include
#include
using namespace std;
struct complex
{
double real;
double imag;
};
int fun(unsigned n, int &zero) //完成统计功能的函数,引用作形参,传回统计结果
{
int count=0,ma
www.eeworm.com/read/234779/14097073
txt tiger-nessie.txt
********************************************************************************
*Project NESSIE - New European Schemes for Signature, Integrity, and Encryption*
**************************************
www.eeworm.com/read/132141/14107566
cpp huffman.cpp
// Huffman tree
#include
#include "minheap.h"
#include "binary.h"
#include "huffman.h"
template
BinaryTree HuffmanTree(T a[], int n)
{// Generate Huffman tree wi
www.eeworm.com/read/231688/14223262
c test6-1.c
#include "userlib.h"
#include
void error(short rtn)
{
switch (rtn)
{
case -1:
printf("error: communciation error\n");
break;
case 0:
/* No error */
www.eeworm.com/read/231652/14225259
pas ac1234.pas
program ural1234;
const
zero=1e-9;
var
a,b,c,d,e:real;
procedure test(a,b:real);
var
i:word;
t:real;
begin
for i:=0 to 9000 do begin
t:=i*pi/18000;
if (a*si
www.eeworm.com/read/231173/14250621
js function.js
function LTrim(str)
{
var whitespace = new String(" \t\n\r");
var s = new String(str);
if (whitespace.indexOf(s.charAt(0)) != -1)
{
var