Why this for loop is not working?

조회 수: 2 (최근 30일)
Amit Kumar
Amit Kumar 2020년 3월 24일
댓글: Amit Kumar 2020년 3월 24일
clear all;
clc;
a = [1 3 6 8 9];
for i = 1:5
c(i,:) = a(i,:)+5
end

채택된 답변

Geoff Hayes
Geoff Hayes 2020년 3월 24일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by