Help solving an error
조회 수: 1 (최근 30일)
이전 댓글 표시
Here is the code:
load PollutionData.txt;
array = PollutionData(:,1); %#ok<NODEF>
timearray = (0:.5:250);
timearray = reshape(timearray,[],1);
constant = reaeration(array);
array(3,:) = array(3,:) .* 0.001076; %conversion
array(6,:) = array(6,:) .* 0.0002778; %conversion
resultarray = deOxygen(array , timearray, constant);
plot(timearray(:,1) , resultarray(:,1))
return
function constant = reaeration(array)
constant = ((array(5,:) * array(3,:)) ^ 0.5) / (array(4,:) .^ 1.5);
return
function resultarray = deOxygen(array , timearray, constant)
resultarray = zeros(1,1000);
for a = (0:.5:250)
resultarray(a) = (((array(6,:) * array(2,:)) / (constant - array(6,:))) * (exp(-array(6,:) * timearray(a) * 3600) - exp(-constant * timearray(a) * 3600))) + (array(1,:) * exp(-constant * timearray(a) * 3600));
end
return
I'm getting in error in the deOxygen function at the "resultarray(a) = (((..." portion. Also, the two following errors also appear:
Attempted to access timearray(0); index must be a positive integer or logical.
Error in myHW7 (line 15) resultarray = deOxygen(array , timearray, constant);
And I have no idea why. Any ideas?
Thanks
댓글 수: 0
채택된 답변
Star Strider
2014년 12월 8일
In ‘deOxygen’, define the ‘a’ vector first:
a = (0:.5:250);
then set the loop up as:
for k1 = 1:length(a)
and replace the ‘(a)’ subscripts with ‘(k1)’ subscripts (or whatever loop counter variable you choose). MATLAB does not allow subscripts to be negative, zero, or non-integers.
Also, I’m not sure what ‘a’ is doing. You don’t use it anywhere in ‘deOxygen’ that I can find.
댓글 수: 6
Star Strider
2014년 12월 9일
Did you implement the array element subscript idea I suggested in my initial Answer? (You need to change all the ‘(a)’ subscripts to ‘k1’ or some variable of your choice. Keeping them as they are now simply will not work.) If so, did it at least solve part of the problem?
There are other potential problems in the way you are calculating ‘resultarray’ even with the subscripts corrected, but until you fix the subscripts it’s impossible to say what other problems may exist.
You’re currently doing matrix (as distinguished from element-wise) operations to create ‘resultarray’. This may or may not be appropriate, depending on what your ‘array’ variables are and what you want to calculate from them.
추가 답변 (1개)
Image Analyst
2014년 12월 8일
Because indexes start with one. Why don't you do this:
index = 1;
for a = (0:.5:250)
resultarray(index) =..........
index = index + 1;
% more code......
end
Or else this:
aArray = 0:.5:250;
for index = 1 : length(aArray)
a = aArray(index); % Extract the value of a that we need.
resultarray(index) =..........
% more code......
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!