Azzera filtri
Azzera filtri

row of a random size matrix

4 visualizzazioni (ultimi 30 giorni)
Jakob Nand
Jakob Nand il 22 Set 2021
Commentato: Jakob Nand il 22 Set 2021
hi,
i wanted to know how to seperate each row of a randomly sized (m,n) matrix

Risposte (2)

Shayan Sepahvand
Shayan Sepahvand il 22 Set 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 il 22 Set 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

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by