我正在绘制以下函数:
L(l = 0)在代码中很不言自明,它分两个条件(B1和B2)进行分段。这是我尝试将其图形化(在Python中):
public class MitchellLab8
{
public static void main(String[] args)
{
// Create two MitchellLandTract objects with the same values
MitchellLandTract land1 = new MitchellLandTract(5, 10);
MitchellLandTract land2 = new MitchellLandTract(4, 16);
// Use the equals method to compare the objects
if (land1.equals(land2))
System.out.println("Both objects are the same.");
else
System.out.println("The objects are different.");
// Display the objects' values
System.out.println("For the first tract of land: " + land1);
System.out.println("For the second tract of land: " + land2);
}
}
我正在寻找优化代码的方法,以便更快地生成图形。 Sympy建议使用autowrap模块,我尝试使用binary_function和lambdify来执行此操作(此处未显示),但是我没有看到明显的变化。
如果有人可以提供帮助,将不胜感激!