How to create a new matrix with a for loop?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mert Dogan
el 15 de Sept. de 2021
Comentada: Mert Dogan
el 15 de Sept. de 2021
Hello friends,
I am a newbie. I have problem.
I have 20 (1x100) different named vectors. I want to combine these vectors to create a 20x100 matrix with a for loop.
There are the examples of vectors.
namelist=["First","B","New"]
First = [1:100]
B = [1:2:200]
New = [4:4:400]
I want to create a new database(20x100) with "First, B , New" vectors with a for loop.
for i = 1: length(namelist)
new_database(i,1:end) = namelist{i}
end
But, when I want to try this I saw "The end operator must be used within an array index expression." error.
I know I can do same thing with this code
new_database= [First;B;New]
but i want to do this with a for loop.
Would you help me how can fix this error? or Would you explain me how can do this?
0 comentarios
Respuesta aceptada
KSSV
el 15 de Sept. de 2021
You should not create individual arrays like that. You should proceed something like this
iwant = zeros(3,100) ;
iwant(i,:) = 1:1:100 ;
iwant(2,:) = 2:2:200 ;
iwant(3,:) = 4:4:400 ;
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays 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!