我想将此代码从matlab转换为python,但出现此错误,我不知道它是关于什么的。 如果您能帮助我编写代码,我将不胜感激
我已经尝试过使用空格。 我不知道如何在python上使用for循环
这是我在matlab中的功能
function err=Mse(RuleBase,x1,x2)
temp=zeros(1,6);
Soogeno=zeros(49,4);
for i=1:length(RuleBase)
y=crisp(0,50,RuleBase(i,3),7);
temp(1,:)=RuleBase(i,:);
temp(1,3)=y;
Soogeno(i,:)=temp(1,1:4);
end
这是我的python代码:
def Mse(RuleBase,x1,x2):
temp=np.zeros(shape = (1,6))
soogeno=np.zeros(shape = (49,4))
for i in range(len(RuleBase)):
y=crisp(m=0,M=50,fy=RuleBase[i,3],n=7)
temp[0]=RuleBase[i]
temp[0,2]=y
Soogeno[i]=temp[0,0:3]
return(soogeno)
这是我得到的错误:
对于范围内的i(len(RuleBase)): ^ IndentationError:意外缩进
答案 0 :(得分:1)
缩进在python中严格执行:
这应该运行:
def Mse(RuleBase,x1,x2):
temp=np.zeros(shape = (1,6))
soogeno=np.zeros(shape = (49,4))
for i in range(len(RuleBase)):
y=crisp(m=0,M=50,fy=RuleBase[i,3],n=7)
temp[0]=RuleBase[i]
temp[0,2]=y
Soogeno[i]=temp[0,0:3]
return(soogeno)