摘要:
you can do this in one line by: a = [0 for _ in range(10)] 参考: https://stackoverflow.com/questions/10712002/create-an-empty-list-in-python-with-certai 阅读全文
摘要:
寻找二维矩阵accumA的最大值所在位置的索引: [MA,IA]=max(accumA); % max value of each column & row index of each column [mVal,mInd]=max(MA); % max value of matrix & colum 阅读全文