Indexing the output of the function nsumk

1 view (last 30 days)
Hey guys, I'm really new to programming. I just figured out how to add a path and get the program nsumk working.
When I type this in:
[~,x] = nsumk(5,5);
result=flipud(unique(sort(x,2,'descend'),'rows'))
This is the output:
result =
5 0 0 0 0
4 1 0 0 0
3 2 0 0 0
3 1 1 0 0
2 2 1 0 0
2 1 1 1 0
1 1 1 1 1
How to I index the entries of this matrix to call upon later? Like, how to I declare an entry in a specific row/column, say in location (3,2), that is, third row and second column, in this case 2, into a variable?
Also, how do I save a specific row to call upon later?
Thanks for your patience with my nooby questions.

Answers (1)

Walter Roberson
Walter Roberson on 19 Sep 2020
result32 = result(3,2)
row3 = result(3,:)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!