# NasNeuron lib written by ValKmjolnir # Basic Class NasMatrix # NasMatGen : generate a new matrix # NasMatAdd : add two matrixes # NasMatSub : sub two matrixes # NasMatMul : multiply two matrix # NasMatTrans: transpose a matrix # NasMatPrt : print a matrix var NasMatrix= { NasMatGen:func(row,col) { var GenMat={Row:row,Col:col,Elem:[]}; for(var i=0;i