Add 3 to just the odd-index elements
38 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Edward Prentice
el 11 de Oct. de 2013
Comentada: Edward Prentice
el 15 de Oct. de 2013
And have a question regarding 2. Let x = [2 5 1 6]. b. Add 3 to just the odd-index elements
They give the answer as
b = x(1:2:end) + 3
but that makes a new matrix with just two numbers in it.
Like so: "b =
21 20
"
Is the question or the answer wrong?
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 11 de Oct. de 2013
Editada: Azzi Abdelmalek
el 11 de Oct. de 2013
x = [2 5 1 6]
x(1:2:end)= x(1:2:end) + 3
Más respuestas (0)
Ver también
Categorías
Más información sobre NaNs en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!