Need help using mink and maxk
조회 수: 7 (최근 30일)
이전 댓글 표시
I am simplifying coordinates, MwCoords. The left column is the x values and the right column is y values. I do not want to alter the postition of the x or y values.
MwCoords =
241.5493 360.1065
241.7508 251.1975
246.9076 148.8279
350.6785 144.9718
349.2095 255.6598
352.6571 364.5513
456.4168 149.5675
459.3270 256.3704
460.4547 360.4354
I have been using mink to find the three minimum values in the x and maxk to find the 3 max values in the x
MwCoordsMins = mink(MwCoords(:,1),3)
MwCoordsMaxs = maxk(MwCoords(:,1),3)
This outputs
MwCoordsMins =
241.5493
241.7508
246.9076
MwCoordsMaxs =
460.4547
459.3270
456.4168
I need to put 1's in the mins, and 3's in the max of the origional MwCoords
From there I need to assign the 3 middle values to 2's
Then I need to plug it back into the origional matrix without disrupting the positioning of these. The postitioning will change every now and then, thats why it has to be in the same place.
After I figure out the x values, I move on to the y values.
If anyone can help, or offer insight that would be great!
Edit - Whatever I added, I put it in bold
댓글 수: 2
dpb
2021년 2월 8일
Return the optional location vector from mink, maxk. Then it's trivial to replace those locations with a constant.
The combination of all these operations if going to be done repeatedly would be a prime candidate for a user function to operate on the array passed to it.
채택된 답변
Star Strider
2021년 2월 8일
편집: Star Strider
2021년 2월 8일
The mink and maxk functions can give the indices of those values as the second output.
If I understand correctly what you want to do, I would do something like this:
[MwCoordsMins,ix1] = mink(MwCoords(:,1),3);
[MwCoordsMaxs,ix2] = maxk(MwCoords(:,1),3);
Then assign the elements accordingly as ‘1’, ‘2’, or ‘3’.
EDIT — I originally posted the full answer before noticing that this was tagged as homework. That part is now gone.
.
댓글 수: 9
Star Strider
2021년 2월 8일
Conner Carriere —
Put this assignment as the first line in your function, the problem then disappears, and the output is correct:
MCoords = g;
(Note that dpb’s solution does essentially the same thing.)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!