I am trying to create a 2 column vector with. I plan to this by creating a 1D vector for both columns and then putting them together.
Column 1: Integers 1 up to n (n having previously been inputted) This I have done easily: v1=[1:n]
Column 2: Corresponding values of each integer for the formula A = (1-1/n), I am really struggling with this, please can someone help me?
Cheers

 採用された回答

Star Strider
Star Strider 2018 年 3 月 6 日

1 投票

I hope this is not a homework assignment.
N = 10;
V1 = zeros(N, 2);
V1(:,1) = 1:N;
V1(:,2) = 1-1./V1(:,1);

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

質問済み:

2018 年 3 月 6 日

回答済み:

2018 年 3 月 6 日

Community Treasure Hunt

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

Start Hunting!

Translated by