Why this for loop is not working?

2 views (last 30 days)
Amit Kumar
Amit Kumar on 24 Mar 2020
Commented: Amit Kumar on 24 Mar 2020
clear all;
clc;
a = [1 3 6 8 9];
for i = 1:5
c(i,:) = a(i,:)+5
end

Accepted Answer

Geoff Hayes
Geoff Hayes on 24 Mar 2020
Amit - a is a row array but the code in the loop is treating it like a column array. Try changing the code to
for i = 1:5
c(i,:) = a(i)+5
end
You should decide whether c should be a row or column array.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!