row of a random size matrix

1 view (last 30 days)
Jakob Nand
Jakob Nand on 22 Sep 2021
Commented: Jakob Nand on 22 Sep 2021
hi,
i wanted to know how to seperate each row of a randomly sized (m,n) matrix

Answers (2)

Shayan Sepahvand
Shayan Sepahvand on 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 on 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

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!