摘要: ```matlab % compare(lnx/x/sinx/e^x) x=0:0.01:+4; y1=log(x); y2=x; y3=x.*x; y4=sin(x); y5=exp(x); % plot(x,y1,y2,y3,y4,y5);grid on plot(x,y1,'r'); hold 阅读全文
posted @ 2023-08-15 23:37 诸葛蛋蛋 阅读(22) 评论(0) 推荐(0)