如何在单击mat-icon时触发mat-autocomplete下拉菜单?

时间:2019-11-26 09:14:09

标签: angular typescript

我正在设计角度应用程序,精确地是角度6。我具有垫子自动完成功能,当我单击输入框时会触发该功能,但是我想更改功能,以便在单击垫子图标时触发用于自动完成的下拉菜单。

我附上了图片,以使我的问题更加清楚以及我已经尝试过什么

import matplotlib.pyplot as plt
from scipy.optimize import curve_fit
import numpy as np

x = np.arange(13)
xx = np.arange(130)/13.
y = np.array([19699.959 , 21679.445 , 21143.195 , 20602.875 , 16246.769 ,
        11635.25  ,  8602.465 ,  7035.493 ,  6697.0337,  6510.092 ,
        7717.772 , 12270.446 , 16807.81  ])
# weighted arithmetic mean (corrected - check the section below)
mean = sum(x * y) / sum(y)
sigma = np.sqrt(sum(y * (x - mean)**2) / sum(y))

def Gauss(x, a, x0, sigma):
    return a * np.exp(-(x - x0)**2 / (2 * sigma**2))


popt,pcov = curve_fit(Gauss, x, y, p0=[max(y), mean, sigma])

plt.plot(x, y, 'b+:', label='data')
plt.plot(xx, Gauss(xx, *popt), 'r-', label='fit')

plt.legend()
plt.show()

图片:

enter image description here

enter image description here

我希望第二张图片具有与第一张图片相同的功能

0 个答案:

没有答案