Is there a way to reference a matrix so that it knows its position in another matrix?
조회 수: 1 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
채택된 답변
Walter Roberson
2016년 6월 20일
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
Walter Roberson
2016년 6월 20일
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.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!