tridiagonal matrix

조회 수: 10 (최근 30일)
George
George 2011년 5월 25일
Hi there. i have this equation | 0.99y(i+1) -2y(i) +2.01y(i-1)=0,0002 | i want i from 1 to 99. So i will have 99 equations with 99 unknowns. The first step is to make a tridiagonal matrix and store the numbers : 0.99 , -2 , 2.01 . How can i do that ?

채택된 답변

Sean de Wolski
Sean de Wolski 2011년 5월 25일
TD = full(gallery('tridiag',100,0.99 , -2 , 2.01))
EDIT Per Comment:
y = TD\B;
  댓글 수: 4
Sean de Wolski
Sean de Wolski 2011년 5월 25일
format long
Sean de Wolski
Sean de Wolski 2011년 5월 25일
It is seeing all digits (64bit floating point), you're not viewing them all...

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by