مساعده في كتابه المعادله بالشكل الصحيح

Create a variable t that takes values from 0 to 2pi with step0.001 . Let
y1=sin(t), y2=t^2 +cos(t) +(e^t^2)/10^6 and y3=cos(t)
my question is i write e^t2 i get many errors so can any one help me and write the code correctly and share it with me
many thanks

نرجو ارسال الكود الذى تقوم باستخدامه لعمل ذلك حتى نستطيع معرفة المشكلة

[SIZE=3][B]باعتبار ال e رقم ثابت يمكن كتابه المعادلات بالشكل التالي


t=0:0.001:2*pi;
y1=sin(t);
e=5;
y2=t.^2 +cos(t) +(e.^(t.^2))/(10^6);
y3=cos(t) ;


[/b][/size]