在here中,给出了以下示例:
def gaussian(x,a1,c1,w1,a2,w2,c2):
g1=a1*np.exp(-(x-c1)**2/(2*w1**2))
g2=a2*np.exp(-(x-c2)**2/(2*w2**2))
return g1+g2
gmodel=Model(gaussian)
result=gmodel.fit(y=y,x=x,params...)
指定的目的地号码在哪里?
答案 0 :(得分:1)
Uri uri = Uri.parse("smsto:xxxxxxxxxx");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
答案 1 :(得分:0)
不是。这是该代码中的一个错误。 ACTION_SENDTO
需要smsto:
或mailto:
Uri
:
Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("smsto:123456"));
其中123456是所需的电话号码。