How to sort out negative and positive values of a vector?

10 次查看(过去 30 天)
if A= -3 -2 -1 0 1 2 3 i want to sort the negative values and positive values in a separate vector

采纳的回答

madhan ravi
madhan ravi 2018-10-10
编辑:madhan ravi 2018-10-10
A=[ -3 -2 -1 0 1 2 3 ]
Negative_nos = sort(A(A<0))
Positive_nos = sort(A(A>=0))
Will do the trick
  2 个评论
Shubham Mohan Tatpalliwar
what sould i do i wanrt to sort only first two values and last three values separately?
madhan ravi
madhan ravi 2018-10-10
编辑:madhan ravi 2018-10-10
sort(A(1:2)) %first two
sort(A(end-2:end)) %last three
give a vote if you find it useful

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by