|
C++ 코드 입니다..
한학기 내용 정리하고 C++ 코드 올려놨어요.. 1.Choleski
2.Bairstow Method
3.Bisection Method
4.Crout
5.Doolittle
6.False Position Method
7.Gauss-Elimination Method
8.Gauss-Jordan Method
9.Gauss-Seidel Method
10.Inverse Matrix Method
11.LU-Decomposition Method
12
|
- 페이지 17페이지
- 가격 3,000원
- 등록일 2008.11.06
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<stdlib.h>
#define SIZE 30
int main(void)
{
int n=0;
int k, reply;
printf("1.덧셈\t2.뺄셈\t3.곱\n");
printf("원하는 연산을 선택하시오:");
scanf("%d", &reply);
int i,j;
printf("n*n행렬에 적
|
- 페이지 3페이지
- 가격 1,500원
- 등록일 2010.05.11
- 파일종류 텍스트(txt)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<stdlib.h>
#define SIZE 30
int main(void)
{
int n=0;
int k, reply;
printf("1.덧셈\t2.뺄셈\t3.곱\n");
printf("원하는 연산을 선택하시오:");
scanf("%d", &reply);
int i,j;
printf("n*n행렬에
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2010.05.11
- 파일종류 텍스트(txt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
주 날개 스파에 걸리는 힘과, 스파의 재료의 허용 응력을 입력하면 날개 스파의 최적화된 사이즈를 구한다. 항공기 구조해석 코드
주 날개의 응력 해석
주 날개의 스파 사이즈 최적화 코드
매틀랩 코드
|
- 페이지 2페이지
- 가격 2,000원
- 등록일 2010.04.23
- 파일종류 텍스트(txt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
function root= fixedpoint(func,xr,es,maxit)
if nargin<5, maxit=50;end
if nargin<4, es=0.001;end
iter=0;
while(1)
xrold=xr;
xr=func(xr)+xr; <<<
iter=iter+1;
if xr~=0, ea = abs((xr-xrold)/xr)*100; end
if ea<=es | iter>=maxit, break, end
end
disp
|
- 페이지 26페이지
- 가격 3,000원
- 등록일 2007.12.03
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|