I'm new for Matlab, and there is a question confusing me.
if A is a matrix that, A = [4 2; 2 3; 3 4]
what A(1) means?
A(1) = 4
A(2) = 2
A(3) = 3
A(4) = 2
A(5) = 3
A(6) = 4
and A(7) get an error: Index exceeds the number of array elements (6).
Wondering if A(1) means the 1st element, then why A(3) and A(4) not in the correct order?
thanks!