How to get the vector in a matrix (specific location)

1 次查看(过去 30 天)
I have matrix A (8x4)
A= [ 1 0 0 0 0 0 0 0
2 0 0 0 0 0 0 0
3 0 0 0 0 0 0 0
4 5 6 7 8 9 10 11]
How can I get vector of B that start from row 4, column 2 till end?
B= [ 5 6 7 8 9 10 11]

采纳的回答

madhan ravi
madhan ravi 2018-11-17
编辑:madhan ravi 2018-11-17
A= [ 1 0 0 0 0 0 0 0
2 0 0 0 0 0 0 0
3 0 0 0 0 0 0 0
4 5 6 7 8 9 10 11]
B = A(4,2:size(A,2))
  4 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by