代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/246573/12718855
m gaussian_elimination.m
function [L,U]=LU(A)
% Gaussian Elimination
Size=size(A);
m=Size(1,1); %计算行数
R=eye(m);%产生单位矩阵,以后用于L
n=Size(1,2);%计算列数
num=1;%设置变换的行数
Z=0;%记录行变换次数
for i=1:m
for k=i:m
if abs(A(i,i
www.eeworm.com/read/246553/12720098
c rcservo.c
// RC servo control RCservo.c // Rev 9/1/05
//Copyright (C) 2005 Alex Brown rbirac@cox.net
//This program is free software; See license at the end of this file for details.
/*
Provide
www.eeworm.com/read/332877/12720939
c c5.c
/*5.3.4 源程序*/
#include
#include
#include
#define LEFTPRESS 0xff01
#define LEFTCLICK 0xff10
#define LEFTDRAG 0xff19
#define MOUSEMOVE 0xff08
struct
{
int nu
www.eeworm.com/read/332820/12725119
-
作者:豆腐
日期:00-6-7 上午 09:18:32
/*
原创:豆腐
请大家在转载和使用的时候保留这条信息
*/
1.数据库结构
/*访问统计历史表,每一次访问都在这个表生成一条记录*/
CREATE TABLE [AccessStat] (
[AutoID] [int] IDENTITY (1, 1) NOT NULL ,
[UserID] [varchar]
www.eeworm.com/read/246404/12728832
pas ac1203.pas
program tju1203;
const
maxcoms=100;
maxlinenum=3000;
type
command=record op,vari:char;num,go,next:word;end;
//op saves the second char of the command
varlist=array['A'..'Z']of word;
www.eeworm.com/read/246404/12729392
pas ac1203.pas
program tju1203;
const
maxcoms=100;
maxlinenum=3000;
type
command=record op,vari:char;num,go,next:word;end;
//op saves the second char of the command
varlist=array['A'..'Z']of word;
www.eeworm.com/read/145238/12744184
cpp clustering.cpp
#include "stdafx.h"
#include "Clustering.h"
#include "stdio.h"
#include "math.h"
/******************************************************************************
/* Name: LBGCluster
/* Functio
www.eeworm.com/read/332598/12746736
h drv.h
/* leddrv.h - the header file with the ioctl definitions.
*
* The declarations here have to be in a header file, because
* they need to be known both to the kernel module
* (in leddrv.c) a
www.eeworm.com/read/144969/12758984
h state.h
/* Type definitions for nondeterministic finite state machine for Bison.
Copyright (C) 1984, 1989, 2000, 2001, 2002, 2003, 2004 Free
Software Foundation, Inc.
This file is part of Bison, th
www.eeworm.com/read/332264/12766400
java 4.9magic.java
import java.io.*;
public class Magic
{
public static void main(String args[])throws IOException
{
int [][]num=new int[15][15];
int i=0,j,n;
String x;
BufferedReader keyin=new BufferedReader(ne