MATLAB Octave integral computation help

Click For Summary
The discussion revolves around a coding issue in Octave related to the computation of a population matrix. The user, Jacob M, is experiencing a problem where the cumtrapz function is not functioning as expected, resulting in zeros in the population matrix outputs for t = 2:101. The primary concern is that cumtrapz is being passed a single element instead of an array, which is causing the integration to fail. The suggestion is made that providing a clearer explanation of the intended calculations, possibly with equations, would aid in diagnosing the problem.
Jacob Marcum
Messages
1
Reaction score
0
Hello,

I'm having some trouble with my octave coding and would appreciate any input on where the issue lies.
The coding is as follows:
Matlab:
age = [0:1:100];                            %this is the age matrix, represented by a
time = [0:1:100];                           %this is the time matrix, represented by tpopulation = zeros(101,101);

for a = 1:101;
  population(a,1) = 0.5;                    %this is the initial population
  B(a) = (1./(2.*a));                          %this is the birthing probability at age (a)
  endfor
 
for t = 1:100
  for a = 2:101
    population(1,t+1) = cumtrapz(B(a));     %this is the birth rate
   population(a,t+1) = population(a-1,t);    %this is the interation process
  endfor
endfor

surf(age,time,population)
<Moderator's note: code tags added. Please use them when posting code.>The issue I'm having lies in the population matrix computation; the cumtrapz integration is not recognizing the step process and all outputs from t = 2:101 in the population matrix are zeros. I would again appreciate any help to understand where the issue lies.

Thank You,
Jacob M.
 
Last edited by a moderator:
Physics news on Phys.org
You are passing a single element to cumtrapz, not an array.

Explaining what you are trying to do (with equations) would help.
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
5K