simple for loop problem
41 ビュー (過去 30 日間)
古いコメントを表示
Create a for loop that adds one to every number in the array. For example [1,2,3] becomes [2,3,4] after the loop is complete.
a. create the variable x=1:10;
b. set the loop to run the correct amount of times
c. write the loop
d. use disp(x)
回答 (2 件)
Maz M. Khansari
2019 年 10 月 23 日
編集済み: Walter Roberson
2024 年 10 月 11 日
The following will do the job for you.
x = 1:10;
x_new = zeros(1,numel(x));
for i=1:numel(x)
x_new(i) = x(i)+1;
end
disp(x);
0 件のコメント
Darshan
2023 年 11 月 8 日
編集済み: Walter Roberson
2024 年 10 月 11 日
x = [1:10]
for i=1:10
new_x(i,:) = x(i)+1
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!