Let A 6 14 29 23 1 8 13 15 2 19 10 21 16 18 4 7 Determine t
Let A = 6, 14, 29, 23
1, 8, 13, 15
2, 19 ,10, 21
16, 18, 4, 7
Determine the following values:
A(4,4) = _____________
A(3,2) = _____________
A(2,3) = _____________
Give a MATLAB expression of the form A(i,j) that returns the value 2: ______________
Give a MATLAB expression of the form A(i,j) that returns the value 29: ______________
Solution
A(4,4)=7
A(3,2)=19
A(2,3)=13
A(3,1)=2
A(1,3)=29
The matlab Code for generating this is:
A=[6,14,29,23;1,8,13,15;2,19,10,21;16,18,4,7]
 B=A(4,4)
 C=A(3,2)
 D=A(2,3)
 E=A(3,1)
 F=A(1,3)

