|
al=(a.real*b.real+a.image*b.image)/c;
d.image=(a.image*b.real-a.real*b.image)/c;
return d;
}
Complex Cplus(Complex a, Complex b)
{
Complex c;
c.real=a.real+b.real;
c.image=a.image+b.image;
return c;
}
Complex Cminus(Complex a, Complex b)
{
Complex c;
c.real=a.real-b.real;
c.image=a.image-b.image;
re
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2006.06.01
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Muller_Method(double, double, double, double);
double f(double);
void main(void)
{
printf(\"e^x-3x^2, [0,1], 10^-8\");
double p0, p1, p2, er;
p0=0;
p1=0.5;
p2=1;
er=pow(10, -8);
Muller_Method(p0, p1, p2, er);
}
void Muller_Method(double p0, double p1, double p2, double er)
{
double p3, c, b, a, z;
|
- 페이지 93페이지
- 가격 3,000원
- 등록일 2009.06.11
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Muller\'s Method
3x3 + 4x2 - 8x -2 = 0 , 1 < x < 2
<< C++ Source >>
#include <stdio.h>
#include <math.h>
double func(double d);
void main()
{
double x1=1;
double x0=1.2;
double x2=1.4;
double x3=10;
double f1=-3;
double f0=-0.656;
double f2=2.872;
double x3o=1;
whil
|
- 페이지 19페이지
- 가격 3,000원
- 등록일 2007.10.08
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
Methods for Engineers(공학도를 위한 수치해석) Ⅰ. 수치해법이 필요한 이유
Ⅱ. 정확한 해를 구하는 과정
1. 구간법
a. 이분법
b. 선형보간법
2. 개방법
a. 고정점 반복법
b. Newton법
c . Secant법
d . Muller법
Ⅲ. 요 약
|
- 페이지 12페이지
- 가격 2,000원
- 등록일 2008.12.16
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
method for nitrogen removal from ammonium-rich wastewater. Water Sci Technol (1998); 37(9), 135-142.
Paredes D, Kuschk P, Mbwette TSA, Stange F, Muller RA, Koser H. New aspects of microbial nitrogen transformations in the context of wastewater treatment - a review. Engineering in Life Sciences (2007
|
- 페이지 12페이지
- 가격 2,000원
- 등록일 2010.10.28
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|