Indexing the output of the function nsumk
2 views (last 30 days)
Show older comments
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.
0 Comments
Answers (1)
See Also
Categories
Find more on Matrix Indexing 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!