I used this function to specify which matric is the longest , which is c in row 3 >> this is correct
Now I need it to read the bigest number in matric c which is 78 >>> what function should I use and can it be written with the same g function I used ?
Solved! Go to Solution.
How about
Note that both indices are vector indices. 1 because you have set ORIGIN to 1.
You could also do it in one go (at the cost of readability)
In case two or more of the vectors in L have the same maximal length, this approach will give you just the highest value in the first one of them and not the overall highest value which would be 312 in the example below.
If this is an issue you could use
How about
Note that both indices are vector indices. 1 because you have set ORIGIN to 1.
You could also do it in one go (at the cost of readability)
In case two or more of the vectors in L have the same maximal length, this approach will give you just the highest value in the first one of them and not the overall highest value which would be 312 in the example below.
If this is an issue you could use
Thank you king