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

조회 수: 8 (최근 30일)
Sophia Chen
Sophia Chen 2021년 1월 22일
답변: Jan 2021년 1월 22일
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

답변 (2개)

Paul Hoffrichter
Paul Hoffrichter 2021년 1월 22일
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 2021년 1월 22일
A = [1 2 ;3 4; 5 6 ;7 8; 9 10; 11 12; 13 14; 15 16];
B = A * [0.6; 0.4]

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by