Matlab 和python 关键函数对照表

Matlab 函数

python

clear,clc---清除变量和翻页

reset(清除变量),ctrl+l

ctrl+r,ctrl+t,注释/取消注释

ctrl+1注释/取消注释

repmat

np.tile

@匿名函数

Lambda

Find 函数,这个函数太好了,省去循环,符合向量化编程,其返回值是行列索引值,如

[row,col]=find(image==255)

np.where,其返回值是元组,解包便可得到行列号

for row,col in range(*np.where(image==255):

   print(row,col)

……想到的话就持续update这些函数

 

你可能感兴趣的:(python,matlab)