代码搜索:Disc
找到约 1,656 项符合「Disc」的源代码
代码结果 1,656
www.eeworm.com/read/355237/10284097
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
www.eeworm.com/read/355101/10294567
m root.m
function [x1,x2]=root(a,b,c,disc,realpart,imagpart)
%求解一元二次方程a*x^2+b*x+c=0.
%
%变量设置和定义
%a,b,c分别为自变量系数
%disc为判别式
%realpart和imagpart分别代表实部和虚部
%x1、x2分别表示方程的根(如果有双根)
disp('求解一元二次方程:a*x^2+b*x+c=
www.eeworm.com/read/355030/10299533
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/423959/10512990
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/278154/10563324
c slvsm2.c
#include
void slvsm2(double **u, double **rhs)
{
void fill0(double **u, int n);
double disc,fact,h=0.5;
fill0(u,3);
fact=2.0/(h*h);
disc=sqrt(fact*fact+rhs[2][2]);
u[2][2] =
www.eeworm.com/read/278154/10564386
c slvsm2.c
#include
void slvsm2(double **u, double **rhs)
{
void fill0(double **u, int n);
double disc,fact,h=0.5;
fill0(u,3);
fact=2.0/(h*h);
disc=sqrt(fact*fact+rhs[2][2]);
u[2][2] =
www.eeworm.com/read/421857/10688096
txt copy x box games!.txt
BURNING X-BOX & GAMECUBE GAMES USEING CDRWIN
------------------------------------------------------
1) Insert your original in your CD-ROM.
2) Open CDRWin (or any other image extractor) to make an
www.eeworm.com/read/421857/10688761
txt copy x box games!.txt
BURNING X-BOX & GAMECUBE GAMES USEING CDRWIN
------------------------------------------------------
1) Insert your original in your CD-ROM.
2) Open CDRWin (or any other image extractor) to make an
www.eeworm.com/read/421312/10741708
c al4_6.c
/*案例代码文件名:AL4_6.C。*/
/*功能:求一元二次方程的解。*/
#include "math.h"
main()
{ float a,b,c,disc,x1,x2,p,q;
scanf("%f,%f,%f", &a, &b, &c); /*输入一元二次方程的系数a,b,c*/
disc=b*b-4*a*c;
if (fabs(disc)
www.eeworm.com/read/421312/10741784
c al3_11.c
/*案例代码文件名:AL3_11.C。*/
/*功能:设计一个顺序结构程序,求方程的根。*/
#include "math.h" /*为使用求平方根函数sqrt(),包含math.h头文件 */
main()
{float a,b,c,disc,x1,x2;
printf("Input a, b, c: ");
scanf("%f,%f,%f",&a,&b,&c);