السلام عليكم سنواصل في هذا الدرس على ما قمت بتقديمه في الدروس السابقة و سأقدم فيه كيفية الرسم البياني الكود التالي يبرز كيفية رسم الدالةsin عندما تكون مدخلاتها متراوحة بين πوπ-ومتباعدة ب0.1 وكلما كانت الخطوة بين الأحداثيات المتتالية أصغر كلما كان الرسم أكثر وضوحا وتواصل. إذا إستعملنا على سبيل المثال خطوة تساوي 1 أو 2 سنلاحظ أن الرسم سيصبح عبارة عن خط متكسر يربط بين بضع نقاط.
function PlotGraphs() x=-pi:.1:pi; y=sin(x); plot(x,y);
>> pi ans = 3.1416
function PlotGraphs() x=-pi:.1:pi; y=sin(x); plot(x,y); grid title('Variation of sin(x) for x in[-\pi, \pi]'); xlabel('[-\pi, \pi]'); ylabel('sin(x)'); legend('Graph1','Location','NorthEastOutside')
function PlotGraphs() x=-2*pi:.1:2*pi; y=sin(x); x1=-2*pi:1:2*pi; y1=sin(x1) plot(x,y,'--'); hold on plot(x1,y1,'-.'); grid title('Variation of sin(x) for x in[-2\pi, 2\pi]'); xlabel('[-2\pi, 2\pi]'); ylabel('sin(x)'); legend('Graph1','Graph2','Location','NorthEastOutside');
figure; subplot(2,2,1), plot(2*x,y), grid subplot(2,2,2), plot(x,2*y), grid subplot(2,2,3), plot(2*x1,y1), grid subplot(2,2,4), plot(x1,2*y1), grid