plotting double timeseries - running into problems with plotting a as a proper time series

hello!
I am trying to plot a 10x2 double variable. When I looked at the actual variable, it is made up of two columns, the first being time, and the second being the value of my timeseries.
here are my variables:
figure;
plot(time, data)
But the figure I get individually plots time and the other 'data' separately, and not as time vs. data.
Can you help me? I have been trying to manually get rid of the one of the columns but it's not sustainable long term.
Thanks!

3 件のコメント

Mathieu NOE
Mathieu NOE 2020 年 12 月 30 日
hello
so data contains time in first and your "real" data is the second vector
this will plot the "real" data vs time
plot(data(:,1),data(:,2))
nines
nines 2020 年 12 月 30 日
thank you!
The shapes of the variables indicate that you have two time series stored in 'data' and the plot should produce two lines.
Perhaps you want
plot(time, data(:,1))
% or
plot(time, data(:,2))

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeData Import and Analysis についてさらに検索

質問済み:

2020 年 12 月 30 日

コメント済み:

2020 年 12 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by