Filter löschen
Filter löschen

How to plot a function over a time interval in specific time increments?

26 Ansichten (letzte 30 Tage)
Quant.Phys42
Quant.Phys42 am 19 Sep. 2019
Kommentiert: madhan ravi am 22 Sep. 2019
xt = @(t) sin(pi*t);
>> fplot(xt,[0 20], 'MeshDensity',100)
>>
Gives me a plot of a function of time over a time interval; how would i plot in this function in specific time increments (time steps)?

Antworten (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov am 20 Sep. 2019
Hi,
Here is the plain answer:
xt = @(t) sin(pi*t);
dt = pi/100;
t = 0:dt:20;
plot(t, xt(t))
  2 Kommentare
madhan ravi
madhan ravi am 22 Sep. 2019
Sulaymon Eshkabilov comments:
change dt that is the time increment, e.g. in order to take 0.01 time step, dt = 0.01. That is all. Good luck.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by