how plot s(t)
1 回表示 (過去 30 日間)
古いコメントを表示
where s(t)= cos(t/2)cos(w*t)-sin(t/2)sin(w*t) where 0 < t< pi w=1000
0 件のコメント
回答 (2 件)
Stalin Samuel
2016 年 3 月 3 日
% for example
t=0.1:0.1:pi
s= cos(t/2).*cos(w*t)-sin(t/2).*sin(w*t)
plot(s)
Star Strider
2016 年 3 月 3 日
You’re not calling the functions themselves in your ‘q’ assignment. Change it to:
q=@(t) s1(t)+s12(t);
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!