Array indices must be positive integers or logical values.
1 view (last 30 days)
Show older comments
Luke Witherow
on 28 Feb 2022
Commented: Star Strider
on 28 Feb 2022
for i = 1:dt:tEmpty
heightArray(1,i) = sqrt(h1) - (.5 * k .* timesArray(i))^2;
flowRateArray(1,i) = sqrt(2 * g .* heightArray(1,i));
massFlowRateArray(1,i) = exitHoleArea * p .* flowRateArray(1,i);
end
Here is the Error message I am getting.
Array indices must be positive integers or logical values.
Error in Luke_Witherow_hw4>drainTank_Loop (line 53)
heightArray(1,i) = sqrt(h1) - (.5 * k .* timesArray(i))^2;
0 Comments
Accepted Answer
Star Strider
on 28 Feb 2022
Try this —
iv = 1:dt:tEmpty;
for i = 1:numel(iv)
heightArray(1,i) = sqrt(h1) - (.5 * k .* timesArray(i))^2;
flowRateArray(1,i) = sqrt(2 * g .* heightArray(1,i));
massFlowRateArray(1,i) = exitHoleArea * p .* flowRateArray(1,i);
end
I am guessing that ‘dt’ is not an integer, and that is throwing the error.
.
2 Comments
More Answers (0)
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!