Indexing the output of the function nsumk

1 次查看(过去 30 天)
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.

回答(1 个)

Walter Roberson
Walter Roberson 2020-9-19
result32 = result(3,2)
row3 = result(3,:)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by