How to build implicit equations

What is the usual method or algorithm used to construct the implicit equations of two variables?

I am talking about equations like

sin (x * y) * y = 20

x * x - y * y = 1

Etc.

Does anyone know how Maple or Matlab do this? My target language is C #.

Many thanks!

+5
source share
4 answers

One way to do this is to try the function on a regular 2D grid. Then you can run an algorithm, for example, marching squares on the resulting 2D grid, to draw iso outlines.

- gnuplot. , , , . : http://www.gnuplot.info/

+9

x , . x , bisection - ( , , ). y x. , , .

, f(x) = 0, . , , : .. y x ).

+5

,

matlab x.

x y.

x0, y0 x1, y1

x1, y1 x2, y2

...

...

-3

All Articles