Elliptic Mesh Generation - Graphics/Ploting help
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Tamir Gazit
am 29 Apr. 2020
Kommentiert: Ameer Hamza
am 30 Apr. 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 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 30 Apr. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!