Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
could anyone tell me how to fix the sum of (n,m) array to a fixed value .
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
could anyone tell me how to fix the sum of (n,m) array to a fixed value .
Réponses (1)
bon sai
le 25 Jan 2018
if [n,m] = size(A), then you can sum by column and then sum by row, or vice visa.
sum(sum(A,1),2)
you will get the same value.
4 commentaires
Walter Roberson
le 25 Jan 2018
"in randfixedsum, the sum(n+m) of (nxm) array should be equal to s"
I do not understand what you are trying to say there? What I think it says is something that is not correct.
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!