绘制具有特定公式的函数

时间:2014-05-21 11:27:37

标签: matlab

有没有人知道如何绘制:

 ln(y/20)*(1+2.98e10*y)=-x/10e-12

我想在matlab中绘制yx的关系。 并且还获得x和y值? 谢谢你的帮助

1 个答案:

答案 0 :(得分:2)

使用ezplot

执行:

ezplot('log(y./20)*(1+2.98e10*y)+x./10e-12',[xmin xmax ymin ymax])

从[-1 1 -1 1]你会得到

enter image description here