Plot return HFD data

1 次查看(过去 30 天)
Harsh Rob
Harsh Rob 2019-8-6
I want to plot the returns data in matlab, which is a matrix of about 18 million rows and three colums. I first calculate the return matrix which is 18million*1 matrix. Removing the first value(NaN) as it will cause an error in the plot. When I plot this, the graph is really absurd. It gives me two straight lines. I checked the data and it does range from xx to xxx. Also, when I try labelling it, it thows me an error that 'Index exceeds number of array elements'.
Can someone help me with this please?
I am using the below code -
%Calculate the returns
for i = 2:length(medianP)
returnvalues(1) = NaN;
returnvalues(i) = log(medianP(i)) - log(medianP(i-1));
end
filteredreturns = returnvalues(2:length(returnvalues))
plot(filteredreturns);
A= min(filteredreturns);
B = max(filteredreturns);
n= 17575621;
x= linspace(A,B,n);
y= returnvalues;
xlabel('Time')
ylabel('Returns')
title('Returns plot')
  1 个评论
Ajay Pattassery
Ajay Pattassery 2019-8-9
You will not receive any error in MATLAB if the data you are plotting contains NaN values. The plot simply ignores those values and display the rest.
Please attach the section of code where you are labeling and the 'Index exceeds the number of array elements' error is thrown.
Please share the medianP array to investigate the possible error while plotting.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by