Filter löschen
Filter löschen

Sum of matrix with variable dimension

1 Ansicht (letzte 30 Tage)
Favier
Favier am 29 Okt. 2016
Kommentiert: Favier am 30 Okt. 2016
Hello, I have two matrices produced by meshgrid and a simple scalar:
r = 1:10;
N = 1:10;
[r,N] = meshgrid(r,N);
N0 = 4;
I want, for each value of N, to get the sum from N0 to N of r^n. However this Matlab commands is not working :
sum(r.^(N0:N));
For example for r(5,5) = 5 and N(5,5) = 5, the result would be 5^4 + 5^5 = 3750. What I want is to get the matrix resultant of this operation over each row and column of r and N.
Thank you for your help!
  2 Kommentare
Image Analyst
Image Analyst am 29 Okt. 2016
Why is the N value raised to the 5th power while the r value is raised to the 4th power? What does it mean to have an exponent that is a vector, like [4,5]?
Favier
Favier am 29 Okt. 2016
Thank you for your interest. Sorry I should have detailed my example a bit more. When I write 5^4 + 5^5 = 3750, it should be read as r(5,5)^N0 + r(5,5)^N(5,5) = 3750.
If N0 = 4 and N(5,5) = 7, then I want to calculate r(5,5)^N0 + r(5,5)^(N0+1) + r(5,5)^(N0+2) + r(5,5)^(N(5,5))
The exponent is a vector to simplify the representation. What I want is to calculate the sum of r^n with n from N0 to N for ALL my r and ALL my N. The larger the N, the more terms I have in the sum. That is the purpose of the vector exponent.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Guillaume
Guillaume am 29 Okt. 2016
I'm not sure what should happen when N(y,x) < N0, should the result be 0?
If I understand correctly, this will do:
arrayfun(@(rr, nn) sum(rr .^(N0:nn)), r, N)
Note that the above works for N(y, x) < N0 because the sum of an empty vector is 0 instead of empty.
  1 Kommentar
Favier
Favier am 30 Okt. 2016
The result should indeed be zero when N < N0. I like your solution a lot.
Thank you very much!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by