Borrar filtros
Borrar filtros

Addition inside of an existing Matrix

1 visualización (últimos 30 días)
Atreyu91
Atreyu91 el 23 de Ag. de 2015
Respondida: matico el 23 de Ag. de 2015
I am trying to understand how to manipulate a matrix, can anyone please show me how to perform the following action in Matlab?
for example if I had a 2x2 matrix
[a,b;c,d]
How would I be able to achieve
[a,b;c,x+d]
e.g a=1, b=2, c=3, d=4,
if X=10
[1,2;3,X+5]

Respuesta aceptada

matico
matico el 23 de Ag. de 2015
M = [1, 2; 3, 4];
X = 10;
%%VERSION 1
M(end) = M(end) + X;
%%VERSION 2
M(2,2) = M(2,2) + X;
In both versions the M matrix become [1, 2; 3, 14]

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by