How can do I write a program to plot a graph between the fluctuation and time . The output graph should be a sine wave aswell
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
T=0:2500:10000;
F(T,z)=summation n=0 to infinty .*(100./factorial(n)).*(1-cos(10.*T).^2)+(sin(10.*T));
plot(T,F);
2 commentaires
Walter Roberson
le 12 Août 2015
You write F(T,z) = something, but the right hand side does not involve z ?
Walter Roberson
le 12 Août 2015
Please check your formula again, paying attention to exactly what expression is being summed.
Réponses (1)
Walter Roberson
le 12 Août 2015
With the expression that you provided:
T=0:2500:10000;
sT = sin(T);
F = sign(sT) * infinity;
plot(T, F);
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!