How to write this b in matrix form

답변 (1개)

Joseph Cheng
Joseph Cheng 2014년 4월 22일
편집: Joseph Cheng 2014년 4월 22일

0 개 추천

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
Sam 2014년 4월 22일
편집: Image Analyst 2014년 4월 22일
Thanks but the b you gave me is the transpose of the b I needed. I think this code works for the b I need.
n = 100;
i = 2:(n-1);
bmid = i.^2 / ((n+1).^4);
b = [1+1/(n+1)^4, bmid, 6+(n^2)/(n+1)^4]';
Joseph Cheng
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
Sam 2014년 4월 23일
Wow chill man. I wasn't telling you to do everything. I just didn't know how to write this as a matrix form in matlab, that's all.

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

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

질문:

Sam
2014년 4월 22일

댓글:

Sam
2014년 4월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by