Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
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

Réponses (1)

nl2605
nl2605 le 12 Mar 2014
for t = 1 : 100
x(t) = sin(2*pi*7.5*10^5*t);
end

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by