Circumstances
I have a procedure which will construct a matrix using the given list of values! and the list starts growing bigger like 100 thousand or million values in a list, which in turn, will result in million x million size matrix.
在程序方面,根据行文、专栏或仅根据内容,在矩阵上进行一些增/次/半/多式业务。
Issues
由于汇总表如此之大,我不认为在记忆中进行整个操纵将会奏效。
<<>问题>
therefore, my question would be: how should i manipulate this huge matrix and the huge value list? like, where to store it, how to read it etc, so that i could carry out my operations on the matrix and the computer won`t stuck or anything.