Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
solve the following series on Matlab :)
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi all,
I want program that do the following:
x(t) = 0.5+2\n *(cos -1\3*cos 3t +1\5 cos 5 t - 1\7 * cos 7t)
1. the program must give the first tow terms . 2. the program must plot the first five terms. 3. t value between 10 and -10
Thank you :) Khaled
1 Kommentar
Antworten (1)
venkat vasu
am 17 Okt. 2012
Hi...
This code may help you and i took n=5;
%x(t) = 0.5+2\n (cos -1\3*cos 3t +1\5 cos 5 t - 1\7 * cos 7t); t=-10:10; n=5; for i=1:length(t) x= 0.5+(2\n); x1=cos(-1\3)(cos(3*t(i))); x2=(1\5)*(cos(5*t(i))); x3=((1\7)*cos(7*t(i))); xf(i)=x*x1+x2-x3; end
Diese Frage ist geschlossen.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!