ساعدوني

السلام عليكم ورحمة الله وبركاته … أما بعد

احسب الدوال الآتية في المدى المعطى وارسم الدوال في نفس الشكل :

f(t)=t.sint
g(t)=t.cost
أ- f(t) و g(t) على محور x
بحيث تكون (f(t بأحمر x و (g(t بلأزرق
قم برسم محور x ومحور واي (f(t و (g(t

طبعا الرسم بالمات لاب

اولا : السلام عليكم
[SIZE=4][COLOR=Black]ثانيا : المدي مش معطي
ثالثا :
امر الرسم هو
plot
ويكتب هكذا

    plot(x,y,'r',x1,y1,'b')

حيث
[/color][/size]x,x1 are data which u want to represent on x axis
y,y1 are data which u want to represent on y axis
[SIZE=4]

[/size]‘r’ the color of the first represented data it is a symbol for red color
‘b’ the color of the second represented data it is a symbol for blue color

شوفي الطريقه هذه

h=ezplot('t*sin(t)')
hold on
hh=ezplot('t*cos(t)')
set(hh,'color','r')

حلوه صح ؟