add vector to an existing matrix
202 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Locks
el 10 de Abr. de 2013
Comentada: Maria-Augusta Miceli
el 5 de Dic. de 2021
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.
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?
0 comentarios
Respuesta aceptada
James Tursa
el 10 de Abr. de 2013
Did you mean this?
data9(:,9) = moneyness;
Another way to do it:
data9 = [data8 moneyness];
2 comentarios
Ver también
Categorías
Más información sobre Import, Export, and Visualization en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!