Suppoase I have a data set t=1: 100( 1 to 100) and I want to get x=sin(2*pi*7.5*10^5*t); how to do that using for loop
Mostrar comentarios más antiguos
Suppoase I have a data set t=1: 100( 1 to 100) and I want to get x=sin(2*pi*7.5*10^5*t); how to do that using for loop
Respuestas (1)
nl2605
el 12 de Mzo. de 2014
0 votos
for t = 1 : 100
x(t) = sin(2*pi*7.5*10^5*t);
end
Categorías
Más información sobre Electrical Block Libraries en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!