How to plot this function in matlab.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Robert Bittinger
le 11 Fév 2023
Réponse apportée : Arif Hoq
le 11 Fév 2023
The expression I am trying to plot is y(t) = -bt - (3/2)b^2. I am confused on how to structure this so I can make a simple plot of the function. Any help would be greatly appreciated. Thank you
0 commentaires
Réponse acceptée
Arif Hoq
le 11 Fév 2023
b=4; % specify your variable b
t=linspace(0,20,10); % time
y=-b.*t-3/2*b.^2;
plot(t,y)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!