Every line of 'matplotlib grid' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
94 def plot_grid(ax, grid): 95 """ 96 Function will plot the samples inside the cvx sets 97 :param ax: Axis object 98 :param lines: List of lines for each convex set 99 :return: None 100 """ 101 ax.scatter(zip(*grid)[0], zip(*grid)[1])