PLOT SYMBOLS/MARKER FOR TWO SET OF ARRAYS IN A CONTOUR
3 次查看(过去 30 天)
显示 更早的评论
Hi,
I have two set of arrays:
xi = linspace(0, 100, 10);
L =linspace(0, 0.0001, 10);
and a matrix: intul
and I have plotted a contour with:
contourf(L, xi, intul, [min(min(intul)):0.3e-11:max(max(intul))]);
How do I plot a marker/symbol at each of those coordinates (i.e., the list of the pairs of (xi,L)) in my contour plot.
0 个评论
采纳的回答
Dyuman Joshi
2024-1-12
X = linspace(-2*pi,2*pi,10);
Y = linspace(0,4*pi,10);
Z = sin(X) + cos(Y).';
contourf(X,Y,Z)
hold on
plot(X, Y, 'r+', 'LineWidth', 2, 'MarkerSize', 10)
2 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Contour Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!