Sum up dissimilar values in a matrix

1 次查看(过去 30 天)
Hi All,
I have a 12*12 matrix and want to add the entries of matrix which are not equal to 1 and which are not similar to any other value in the Matrix. In short, I want to add up all the dissimilar values and the values not equal to 1.
Is there any short way to do so using loop function.
Many Thanks
Anum

采纳的回答

the cyclist
the cyclist 2019-11-15
编辑:the cyclist 2019-11-15
If M is your array ...
sum(unique(M(M~=1)))
  3 个评论
the cyclist
the cyclist 2019-11-15
Sorry, meant to include the uniqueness in there. Edited to fix.
Anum Ahmed
Anum Ahmed 2019-11-15
Awesome. Thanks a bundle...
Regards
Anum

请先登录,再进行评论。

更多回答(0 个)

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by