Why this for loop is not working?

2 visualizaciones (últimos 30 días)
Amit Kumar
Amit Kumar el 24 de Mzo. de 2020
Comentada: Amit Kumar el 24 de Mzo. de 2020
clear all;
clc;
a = [1 3 6 8 9];
for i = 1:5
c(i,:) = a(i,:)+5
end

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 24 de Mzo. de 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.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by