フィルターのクリア

Calculating values from a sequence with a for loop

8 ビュー (過去 30 日間)
Ryan Bowman
Ryan Bowman 2018 年 12 月 8 日
コメント済み: madhan ravi 2018 年 12 月 8 日
I'm trying to to calculate the first 100000 values of the sequence a_n = (2.2*n-1)^2 (with n=1,2,3,4,...etc) with a for loop. I cannot find out why I can't get the values I want into a column vector. I'm also just trying to display the first 10 values I get to the command window. Here is my code:
num = 100000;
n = 1;
AnLoop = zeros(1,100000);
for nLoop = 1:num
AnLoop = (2.2.*n-1).^2;
n = n+1;
end
disp('The first 10 values of this sequence is: ')
fprintf('%d\n', AnLoop)

採用された回答

madhan ravi
madhan ravi 2018 年 12 月 8 日
編集済み: madhan ravi 2018 年 12 月 8 日
With Loop:
num = 100000;
n = 1:100000;
A = zeros(100000,1);
for nLoop = 1:num
A(nLoop,1) = (2.2.*n(nLoop)-1).^2;
end
disp('The first 10 values of this sequence is: ')
fprintf('%d\n', A(1:10))
%or
disp(A(1:10)) % to disp values
Without Loop:
num = 100000;
n = 1:100000;
A=((2.2.*n-1).^2).';
disp('The first 10 values of this sequence is: ')
fprintf('%d\n', A(1:10))
disp(A(1:10)) % to disp values
  2 件のコメント
Ryan Bowman
Ryan Bowman 2018 年 12 月 8 日
thank you so much!!
madhan ravi
madhan ravi 2018 年 12 月 8 日
Anytime :)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by