Adding a value to a vector

I have vector x
x=[ 1 2 3 ]
I want i add value 4 to every value in x
[ 1 2 3 ] + 4
Expected outcome
x=[ 5 6 7 ]
How can i perform this in matlab?

1 comentario

Jan
Jan el 16 de En. de 2021
Did you try this? [ 1 2 3 ] + 4 is working already.

Iniciar sesión para comentar.

Respuestas (1)

Cris LaPierre
Cris LaPierre el 16 de En. de 2021
The same way. What have you tried?
See Ch 6 of MATLAB Onramp.
x=[ 1 2 3 ];
x=x + 4
x = 1×3
5 6 7

Categorías

Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 16 de En. de 2021

Comentada:

Jan
el 16 de En. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by