hi,
I have the follogin problem: I have a matrix cosisting of 8 columns and 19599 rows and I would first generate a column vector with 19599 elements and add this to the existing matrix. I tired the following:
data9= zeros(size(data8,1),9);
data9(:,1:8) = data8;
where data 8 is the existing matrix with 8 columns and I am intending to create a nineth column which can be fillled.
than I create the clumn vector called moneyness which is a double vecotr
and then I did
data9(i,9) = moneyness;
unfortunately, this gives me the following error message:
Subscripted assignment dimension mismatch.
Error in construct_data (line 36) data9(i,9) = moneyness;
IS there anybody who can help me?

 채택된 답변

James Tursa
James Tursa 2013년 4월 10일

4 개 추천

Did you mean this?
data9(:,9) = moneyness;
Another way to do it:
data9 = [data8 moneyness];

댓글 수: 2

Locks
Locks 2013년 4월 10일
perfect, thanks
Maria-Augusta Miceli
Maria-Augusta Miceli 2021년 12월 5일
Perfect, great!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Susan
Susan 2013년 4월 10일
편집: Susan 2013년 4월 10일

2 개 추천

data9 = zeros(size(data8,1),1);
data9 = [data8,data9];
This will concatenate the variables together, giving you a 19599 x 9 matrix.

카테고리

질문:

2013년 4월 10일

댓글:

2021년 12월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by