Elliptic Mesh Generation - Graphics/Ploting help

Hi,
I am trying to create a grid like the following:
I have two vectors: X and Y coordinates.
I need to find a way to add vertical lines to this plot.
Thanks,
Tamir

4 个评论

Can you share the code for generating these figures? It will be much easier to suggest a solution if we already have code for this figure.
Actually I wrote the code in C language.
I'm exporting x and y vectors
If possible, you can share the datapoints to draw this curve.

请先登录,再进行评论。

 采纳的回答

Try this. It separates the points on edge and connects each of them to the center.
load('points.mat');
x_edge = x10N(end-50:end);
y_edge = y10N(end-50:end);
lines_X = [x10N(1)*ones(size(x_edge)).'; ...
x_edge.'];
lines_Y = [zeros(size(x_edge)).'; ...
y_edge.'];
plot(x10N, y10N, 'b');
hold on
plot(lines_X, lines_Y, 'b-')
axis equal

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by