Graphing specific function over time
Afficher commentaires plus anciens
How can I graph the function da=0.5+0.425*sin((2*pi*60)*t) and vary t from 0 to 10 seconds?
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 10 Mar 2023
da = @(t)0.5+0.425*sin((2*pi*60)*t);
fplot(da, [0 10])
Communautés
Plus de réponses dans Power Electronics Control
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
