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

1 次查看(过去 30 天)
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

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by