Clear Filters
Clear Filters

get vector from a matrix ith row or column based on given dimension

1 view (last 30 days)
Hi,
I have very simple question but couldn't find a simple answer to it:
how can i get ith row or column of a matrix acc.to given dimension value. I mean, i need such a function:
v=getroworcolumnvector(Amatrix,i,dim);
for Amatrix is 2 dimensional array, it should give a vector which is ith row of Amatrix if dim==1, or ith column of Amatrix if dim==2
Thank you,
Baris

Accepted Answer

Bruno Luong
Bruno Luong on 2 Dec 2018
c = repmat({':'},1,ndims(A));
c{dim}=i;
A(c{:})

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!