Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Do these subroutines multiply Ax by rows or columns? Start with B(I) = 0: DO 10 I = 1, N DO 10 J = 1,
Do these subroutines multiply Ax by rows or columns? Start with B(I) = 0: DO 10 I = 1, N DO 10 J = 1, N DO 10 J = 1, N Do 10 I = 1, N B(I) = B(I) + A(I, J) * X(J) B(I) = B(I) +A (I, J) X (J) The outputs Bx = Ax are the same. The second code is slightly more efficient in FORTRAN and much more efficient on a vector machine (the first changes single entries B(I), the second can update whole vectors)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started