Extracting rows in row-wise manner. How to do this?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Suppose,a matrix A, A=[1 2 3 4; 1 0 2 8; 1 2 3 6....]
Size(A)=100 4
And I want to extract each row in a row-wise manner (ie.row1,then row2, row3....)and then place it in seperate B matrix where 1 row will be used at a time.
How to do this?
1 comentario
Respuestas (2)
KSSV
el 16 de Sept. de 2021
Question sounds very silly. You can use a lloop.
A = rand(100,4) ;
B = zeros(100,4) ;
for i = 1:100
thisrow = A(i,:) ;
B(i,:) = thisrow ;
end
0 comentarios
Image Analyst
el 16 de Sept. de 2021
Try this:
[rows, columns] = size(A);
for row = 1 : rows
% Extract a row of A (all columns of it) into a new row vector, B.
B = A(row, :)
% Now use B in whatever way you want. It will get overwritten on each iteration, but that shouldn't matter.
end
0 comentarios
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!