Is there a way to reference a matrix so that it knows its position in another matrix?

3 views (last 30 days)
Is there a better way to reference this table? the i and j columns are referring to a specific point inside an 11x14 matrix. Looking at the example code I have posted, Q is an 11x14 matrix. My code is stating that Q(4,10)=... by making this convoluted reference Q((Well(nn,6),Well(nn,7)). Is there a better way to do this?

Accepted Answer

Walter Roberson
Walter Roberson on 20 Jun 2016
No, that is appropriate code.
As a matter of clarity I would use a temporary vector, something like
for nn=1:NumWell
thiswell = Well(nn,:);
if thiswell(2) == 5
i = thiswell(6); j = thiswell(7);
Q(i, j) = Q(i, j) - thiswell(4);
Rate1(i, j) = - thiswell(4);
end
end
  2 Comments
zephyr21
zephyr21 on 20 Jun 2016
That helps tidy up the code a bit. But the reason I was asking is because in another string of code following this, I need to say that if the pressure of a specific spot in another 11x14 matrix falls below the number in the table, then make the rate zero
Walter Roberson
Walter Roberson on 20 Jun 2016
The same principles apply: for clarity, assign to temporary variables. This is not necessarily going to lead to faster code, but unless the code is going to be executed a lot, the larger cost is in programming and debugging, so write first to be able to understand the code.

Sign in to comment.

More Answers (0)

Categories

Find more on Multidimensional Arrays 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!