Borrar filtros
Borrar filtros

Elliptic Mesh Generation - Graphics/Ploting help

7 visualizaciones (últimos 30 días)
Tamir Gazit
Tamir Gazit el 29 de Abr. de 2020
Comentada: Ameer Hamza el 30 de Abr. de 2020
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 comentarios
Ameer Hamza
Ameer Hamza el 30 de Abr. de 2020
If possible, you can share the datapoints to draw this curve.
Tamir Gazit
Tamir Gazit el 30 de Abr. de 2020
datapoints:

Iniciar sesión para comentar.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 30 de Abr. de 2020
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
  2 comentarios
Tamir Gazit
Tamir Gazit el 30 de Abr. de 2020
You are amazing!
Thank you!
Ameer Hamza
Ameer Hamza el 30 de Abr. de 2020
I am glad to be of help.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by