photo

KARIM MANSOUR


Last seen: 1 year ago Active since 2021

Followers: 0   Following: 0

Statistics

MATLAB Answers

3 Questions
0 Answers

RANK
190,312
of 301,432

REPUTATION
0

CONTRIBUTIONS
3 Questions
0 Answers

ANSWER ACCEPTANCE
33.33%

VOTES RECEIVED
0

RANK
 of 21,280

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 174,555

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

  • Thankful Level 1

View badges

Feeds

View by

Question


Hilbert matrix come on
n=100; for i=1:n for j=1:n A(i,j)=1/(i+j-1); end end [L,U,P]=lu(A),xex=ones(n,1), b=A*xex,...

5 years ago | 0 answers | 0

0

answers

Question


what is the probleme exactly u must be of size[3,20] but i find it [3,1]
function [u] = suite(A,b,u1,nb) [n,n] = size(A); u=u1; for i = 1 : nb u= A*u +b; end end ...

5 years ago | 1 answer | 0

1

answer

Question


Not enough input arguments.
function [u] = suitem(A,b,u1,nb) [n,n] = size(A) ; u=u1 for i = 1 : nb u= A*u +b end end

5 years ago | 1 answer | 0

1

answer