How to write this b in matrix form
이전 댓글 표시

Can anyone help me write this b in matrix form in matlab?
답변 (1개)
Joseph Cheng
2014년 4월 22일
편집: Joseph Cheng
2014년 4월 22일
Look for the patterns and you can build these efficiently.
n=100;
b=1:n;
b=b.^2;
b=b/(n+1)^4;
b(1)=b(1)+1;
b(end)=b(end)+6;
댓글 수: 3
Sam
2014년 4월 22일
편집: Image Analyst
2014년 4월 22일
Joseph Cheng
2014년 4월 22일
편집: Joseph Cheng
2014년 4월 22일
well i can't do everything for you. Talk about looking at a gift horse in the mouth. just transpose what i wrote or initialize b to be the correct size.
Sam
2014년 4월 23일
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!