我想在 matlab 中创建一个名为 create_empty_universum 的函数。这个函数将产生一个所有元素都为零的新universum。这个universum必须具有给定矩阵的nxm(n行长度,m列长度)
例如。
I have a matrix m given.
I = len(m) #I is the amount of rows
J = len(m[0]) #J is the amount of columns
New_matrix =[]
row= I*[0]
index = 0
def create_empty_universum():
while index < J :
New_matrix.append(row)
index +=1
return New_matrix
但我的新矩阵仍然 [] 这是怎么来的?