代码搜索:Disc
找到约 1,656 项符合「Disc」的源代码
代码结果 1,656
www.eeworm.com/read/400386/11577817
cpp c13-1.cpp
#include
#include
using namespace std;
int main()
{float a,b,c,disc;
couta>>b>>c;
if (a==0)
cerr
www.eeworm.com/read/158443/11616223
c slvsm2.c
#include
void slvsm2(u,rhs)
double **rhs,**u;
{
void fill0();
double disc,fact,h=0.5;
fill0(u,3);
fact=2.0/(h*h);
disc=sqrt(fact*fact+rhs[2][2]);
u[2][2] = -rhs[2][2]/(fact
www.eeworm.com/read/155903/11839672
txt 例13.1.txt
例13.1 有一元二次方程ax2+bx+c=0,其一般解为
x1,2=-b±b2-4ac[]2a,但若a=0,或b2-4ac
www.eeworm.com/read/258191/11877777
cpp speciallist.cpp
//: C21:SpecialList.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Using the second version of
www.eeworm.com/read/258097/11886438
h avb_if.h
#ifndef __AVB_IF_H
#define __AVB_IF_H
int avb_Init();
//#include "disc.h"
#endif/*__AVB_IF_H*/
www.eeworm.com/read/153993/11995836
txt linux之菜鸟日记(一).txt
Linux之菜鸟日记(一)
最近Linux实在是火得很,不学点Linux的知识肯定是不行的。要学就学点正宗的,最近用Linux的人好象很少有人不提到Red Hat,我这个爱赶时髦的菜鸟学习Linux当然也是从Red Hat入手。没有安装盘,这不成问题,到网上直接来到www.redhat.com,当前的最新版本是7.1。安装所需的两个文件是:seawolf-i386-<mark>disc</mark>1.iso ...
www.eeworm.com/read/153993/11995985
txt linux之菜鸟日记(一).txt
Linux之菜鸟日记(一)
最近Linux实在是火得很,不学点Linux的知识肯定是不行的。要学就学点正宗的,最近用Linux的人好象很少有人不提到Red Hat,我这个爱赶时髦的菜鸟学习Linux当然也是从Red Hat入手。没有安装盘,这不成问题,到网上直接来到www.redhat.com,当前的最新版本是7.1。安装所需的两个文件是:seawolf-i386-<mark>disc</mark>1.iso ...
www.eeworm.com/read/153678/12012355
cpp speciallist.cpp
//: C21:SpecialList.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Using the second versio
www.eeworm.com/read/253232/12237213
c options.c
/*
* options.c
*
* Copyright (c) 2002 Ben Fennema
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it un
www.eeworm.com/read/251528/12339436
m lti_int.m
%LTI_INT Integrate LTI ODE with Gaussian Noise
%
% Syntax:
% [x,P,A] = lti_int(x,P,F,L,Q,T)
%
% Description:
% Integrates LTI differential equation
%
% x' = F*x + L*w , w ~ N(0,Q)
%
% from