Gets the value at a specified location in the matrix. For example, with a Mat!(float, 2, 2) m, we can say float v = m[0, 1];
The row number, starting from 0.
The column number, starting from 0.
The value at the specified location.
See Implementation
Gets the value at a specified location in the matrix. For example, with a Mat!(float, 2, 2) m, we can say float v = m[0, 1];