I have a v = 2x30 matrix and I need to take make another matrix to take all points of v whose y coordinates are positive
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I suggest that you read the documentation on matrix indexing, and specifically the part about logical indexing. I believe the solution you're looking for is something like this:
|
||||
|
You try this simple indexing to extract positive values from both rows and merge both rows to form the required all positive values.
V =
-0.8759 -0.5583 -0.5700 -0.9087 -1.6989 % first row
%second row
%merge both first and second row to obtain all positive values
posValues =
The above values are positive values in both first and second rows. Hope this helps? |
|||
|
|