row of a random size matrix

3 Ansichten (letzte 30 Tage)
Jakob Nand
Jakob Nand am 22 Sep. 2021
Kommentiert: Jakob Nand am 22 Sep. 2021
hi,
i wanted to know how to seperate each row of a randomly sized (m,n) matrix

Antworten (2)

Shayan Sepahvand
Shayan Sepahvand am 22 Sep. 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 am 22 Sep. 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

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by