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
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
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 comentarios
Walter Roberson
el 12 de Ag. de 2015
You write F(T,z) = something, but the right hand side does not involve z ?
Walter Roberson
el 12 de Ag. de 2015
Please check your formula again, paying attention to exactly what expression is being summed.
Respuestas (1)
Walter Roberson
el 12 de Ag. de 2015
With the expression that you provided:
T=0:2500:10000;
sT = sin(T);
F = sign(sT) * infinity;
plot(T, F);
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!