photo

Thanachart Wongmark


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

1 Question
0 Answers

RANK
173,326
of 300,365

REPUTATION
0

CONTRIBUTIONS
1 Question
0 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

RANK
 of 20,933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,262

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Review
  • Thankful Level 1

View badges

Feeds

View by

Question


For Ax=b, How do I make LU decomposition (A=L*U) without using lu function. For example, A is nxn matrix and bis nx1 matrix.
clc clear A=rand(5) b=rand(5,1); A(2:3,1) n=length(A) U=A; for i=1:n k=i+1 i U(k:n,i)=U(k:n,i)-U(i,i)*(U...

5 years ago | 1 answer | 0

1

answer