Plotting quadratic f(t) = t^3
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mxolisi Mathonsi
il 5 Ott 2018
Risposto: Sebastian Castro
il 7 Ott 2018
Hi
How can I plot a f(t)=t^3 when with a period of -pi<=t<pi.
Over the time interval of -2pi<=t<=2pi.
0 Commenti
Risposta accettata
Sebastian Castro
il 7 Ott 2018
Yes.
% 1001 samples from -2pi to 2pi
t = linspace(-2*pi, 2*pi, 1001);
% Element-wise multiplication
f = t.^3;
% Plot
plot(t,f)
- Sebastian
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Animation in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!