[수치해석] 수치해석 muller's method 뮬러 메소드
본 자료는 1페이지 의 미리보기를 제공합니다. 이미지를 클릭하여 주세요.
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
해당 자료는 1페이지 까지만 미리보기를 제공합니다.
1페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

[수치해석] 수치해석 muller's method 뮬러 메소드에 대한 보고서 자료입니다.

목차

1. Source code
2. result

본문내용

=(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;
return c;
}
Complex Csqrt(Complex a)
{
Complex b;
float c,d,e,f;
f = 0.5*3.1416;
if (absol(a.real) <= 0) {
if (absol(a.image) <= 0) {
d = 0.0;
e = 0.0;
}
else {
e = f;
if (a.image < 0.0) e = -e;
d = absol(a.image);
}
}
else {
d = sqrt(a.real * a.real + a.image * a.image) ;
if (absol(a.image) < 0) {
e = 0.0;
if (a.real < 0.0) e = pi;
}
else {
e = atan( a.image / a.real );
if (a.real < 0.0) e = e + 3.1416;
}
}
c = sqrt(d);
b.real = c * cos(0.5 * e);
b.image = c * sin(0.5 * e);
return b;
}
(3)Result

키워드

  • 가격1,000
  • 페이지수5페이지
  • 등록일2006.06.01
  • 저작시기2006.4
  • 파일형식한글(hwp)
  • 자료번호#352502
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니