0

我有一个由 Matlab 生成的等高线图。我想知道轮廓函数绘制的轮廓之一的方程。

有没有一种简单的方法可以做到这一点?

谢谢。

PS我是新来的,所以网站没有让我附上图片文件说我需要足够的声誉来发布图片!

4

1 回答 1

0

来自doc contour

[C,H] = CONTOUR(...) returns contour matrix C as described in CONTOURC
and a handle H to a contourgroup object.  This handle can be used as
input to CLABEL.

contourc

The contour matrix C is a two row matrix of contour lines. Each
contiguous drawing segment contains the value of the contour, 
the number of (x,y) drawing pairs, and the pairs themselves.  
The segments are appended end-to-end as

    C = [level1 x1 x2 x3 ... level2 x2 x2 x3 ...;
         pairs1 y1 y2 y3 ... pairs2 y2 y2 y3 ...]
于 2013-07-24T22:51:10.837 回答