利用matlab,怎么在坐标轴中的点,往坐标轴两端引出虚线

2024-12-26 08:01:58
推荐回答(1个)
回答1:

clc;clear;
x=0:2;
plot(1,1,'r*');
xx=[min(x),1,max(x)];
yy=[0,1,0];
hold on;plot(xx,yy,'b--');