write code in matlab to draw scatter points of cosx plus 2s0inx
x = linspace(-pi,pi,50); y = cos(x) + 2*sin(x); scatter(x,y) xlabel('x') ylabel('y') title('Scatter plot of cos(x) + 2sin(x)')
原文地址: http://www.cveoy.top/t/topic/bs9h 著作权归作者所有。请勿转载和采集!