我在微调器上有3个菜单。 正方形,圆形和直角三角形,我希望每个菜单都有不同的公式,例如
a = np.random.randn(10, 10).astype('float')
b = np.random.randn(10, 10).astype('uint8')
t=np.hstack((a,b))
t=pd.DataFrame(t)
uints = t.select_dtypes(include=['uint8']).columns.tolist()
x的值取自EditText1,y的值取自EditText2。 它的输出值在TextView中。
这是我的代码:
a= x*y
b= x+y
c= x:y
我如何为微调器中的每个菜单添加每个公式? cmiiw