Question

In Octave, how do I get the sum of all the elements of a matrix a excluding those in the first column?

Était-ce utile?

La solution

Try this:

sum(a(1:end, 2:end)(:))
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top