Does anyone know how I can add all the values in a i,j matrix. I want my program to generate a matrix using the following:
i =: 1..n
j =: 1..m
Matrices can be created for numerous values of n and m. An example is shown below:
L(i,j) = i*j
Where i and j are the indices, not functions for L...