Statistics
4 Questions
0 Answers
RANK
170,156
of 301,175
REPUTATION
0
CONTRIBUTIONS
4 Questions
0 Answers
ANSWER ACCEPTANCE
25.0%
VOTES RECEIVED
0
RANK
of 21,185
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 173,238
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
I need program to LU decomposition of tridiagonal matrix?
How can help to a program LU decomposition of tridiagonal matrix
10 years ago | 2 answers | 0
2
answersQuestion
I have problem ,in this program ,I want to use Gauss elimination to find U ,L , my result is wrong,please help me to find probleam ?
function [L,U]=GuesElemation(M,n) L=1; U=M; for k=1:n-1 for i=k+1:n M(i,k)=-U(i,k)/U(k,k); end end for...
10 years ago | 0 answers | 0
0
answersQuestion
how can help to find lower in this matrix , i found upper by cholesky decomposition ,but I need to find lower
A=[25 5 47 10;5 50 -19 9;10 -19 25 19;10 9 19 45]; n = size(A,1); O = zeros(n); L = O; for k = 1:n if k == 1 L(k,k) = sqrt(...
10 years ago | 1 answer | 0
1
answerQuestion
I find upper ,who can help in this program to find lower in this matrix?
A=[25 5 10 10;5 50 -19 9;10 -19 94 19;10 9 19 45]; n = size(A,1); O = zeros(n); L = O; for k = 1:n if k == 1 L(...
10 years ago | 0 answers | 0
