How to create horizontal grid lines?

3 次查看(过去 30 天)
Hi there. Can anyone help me figure out why my code isn't creating horizontal grid lines? Thank you in advance!
%%create grid
N = 100;
xgrid = linspace(103.6,104,N);
ygrid = linspace(1.25,1.5,N);
[X,Y] = meshgrid(xgrid,ygrid);
figure
hold on
plot(X,Y,'r');
plot(Y,X,'r');
xlim([103.6 104])
ylim([1.25 1.5])

采纳的回答

KSSV
KSSV 2017-5-23
%%create grid
N = 100;
xgrid = linspace(103.6,104,N);
ygrid = linspace(1.25,1.5,N);
[X,Y] = meshgrid(xgrid,ygrid);
figure
hold on
plot(X,Y,'r');
plot(X',Y','r');
xlim([103.6 104])
ylim([1.25 1.5])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polar Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by