row of a random size matrix

3 visualizaciones (últimos 30 días)
Jakob Nand
Jakob Nand el 22 de Sept. de 2021
Comentada: Jakob Nand el 22 de Sept. de 2021
hi,
i wanted to know how to seperate each row of a randomly sized (m,n) matrix

Respuestas (2)

Shayan Sepahvand
Shayan Sepahvand el 22 de Sept. de 2021
Use this code:
[m, n] = size(X);% X is that random matrix
row_mat = zeros(m, 1);
for i = 1:m
row_mat = X(i,:);
end
row_mat is the seperated row

KSSV
KSSV el 22 de Sept. de 2021
A = rand(5,4) ;
a = num2cell(A',1) ;
A(1,:)
ans = 1×4
0.3849 0.5708 0.5962 0.5155
a{1}
ans = 4×1
0.3849 0.5708 0.5962 0.5155

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by