python find_pair.py

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python find_pair.py相关的知识,希望对你有一定的参考价值。

import numpy as np
import matplotlib.pyplot as plt
def f1(x,y):
    return x**y-y**x
def f2(x,y):
    return x-y
x0=int(raw_input("x0 = ") or '0') 
xlast=int(raw_input("xlast = ") or '100')
xwindow=int(raw_input("xwindow = ") or '1')
y0=int(raw_input("y0 = ") or '0')
ylast=int(raw_input("ylast = ") or '100')
ywindow=int(raw_input("ywindow = ") or '1')
x=np.arange(x0,xlast,xwindow)
y=np.arange(y0,ylast,ywindow)
X,Y=np.meshgrid(x,y)
Z1=f1(X,Y)
Z2=f2(X,Y)
Z=Z2-Z1
a,b=np.where(Z == 0)
result=np.column_stack((a,b))
np.savetxt('result.txt',result,fmt='%d')
plt.contour(X,Y,Z2)
plt.contour(X,Y,Z1)
plt.show()

以上是关于python find_pair.py的主要内容,如果未能解决你的问题,请参考以下文章

001--python全栈--基础知识--python安装

Python代写,Python作业代写,代写Python,代做Python

Python开发

Python,python,python

Python 介绍

Python学习之认识python