How to write this b in matrix form

1 回表示 (過去 30 日間)
Sam
Sam 2014 年 4 月 22 日
コメント済み: Sam 2014 年 4 月 23 日
Can anyone help me write this b in matrix form in matlab?

回答 (1 件)

Joseph Cheng
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 件のコメント
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by