Plot time series object in logarithmic scale

6 Ansichten (letzte 30 Tage)
Hampus
Hampus am 20 Jan. 2017
Kommentiert: Hampus am 20 Jan. 2017
I have two nx2 vectors:
date = date number
closep = closing price
I then want to plot the time series with logarithmic scale. Anyone who knows how to do this?
So far I've only:
tsobj = fints(date, closep)
plot(tsobj)

Antworten (1)

Walter Roberson
Walter Roberson am 20 Jan. 2017
set(gca, 'YScale', 'log')
  3 Kommentare
Walter Roberson
Walter Roberson am 20 Jan. 2017
? With that tsobj and that plot() command, closep will be the Y axis, and the set() to log scale will change the axis scaling and the default y tick locations and default y tick label formatting
For example,
tsobj = fints([(now-(500:-1:401)/10).'], rand(100,2));
plot(tsobj)
set(gca, 'YScale', 'log')
the Y ticks will get labeled with powers of 10 in this example.
If you are looking for a different tick label format or tick positions, then the way to do that is going to depend upon what your MATLAB release. In particular are you using R2014b or later?
Hampus
Hampus am 20 Jan. 2017
later, thanks mate

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Dates and Time finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by