how do u make a new value that is the sum of two columns

8 visualizaciones (últimos 30 días)
Sophia Chen
Sophia Chen el 22 de En. de 2021
Respondida: Jan el 22 de En. de 2021
So I have a value r which is a variable with two columns of value represent the returns of two stocks.
now I wanna make a new variable that is 0.6 of first stock and 0.4 of second stock
how should I do that

Respuestas (2)

Paul Hoffrichter
Paul Hoffrichter el 22 de En. de 2021
A = [1 2 ;3 4; 5 6 ;7 8; 9 10; 11 12; 13 14; 15 16]
A =
1 2
3 4
5 6
7 8
9 10
11 12
13 14
15 16
K>> w = .6*A(:,1) + .4*A(:,2);
w =
1.4000
3.4000
5.4000
7.4000
9.4000
11.4000
13.4000
15.4000

Jan
Jan el 22 de En. de 2021
A = [1 2 ;3 4; 5 6 ;7 8; 9 10; 11 12; 13 14; 15 16];
B = A * [0.6; 0.4]

Categorías

Más información sobre Get Started with MATLAB 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