How to decide dimension (using correlationDimension function)?

Technical Source
2 min readMar 11, 2022

--

I have some data y and I want to derive correlation dimension of this data.

So, I followed the example of correlation function as followings.

xdata = y(:); Np = 100; dim = ??
[~,lag] = phaseSpaceReconstruction(xdata,[],dim)
tmp = correlataionDimension(xdata,'Dimenstion',dim,'Lag',lag,'NumPoints',Np)

And, here is the problem. I exactly know the dimension of original system of xdata =100, but correlation dimension of xdata is less than 10.

Then, can I use dim = 10 for given code?? Or still I need to use dim = 100?

NOTE:-

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

Hi JaeSung,

You can estimate the embedding dimension of your data using the phaseSpaceReconstruction command and use that value for the dimension argument of the correlationDimension command. You can code something like this:

[~, lag, dim] = phaseSpaceReconstruction(xdata);

cd = correlationDimension(xdata, lag, dim)

You can also experiment with the phaseSpaceReconstruction command by providing your own dimension (and lag, if you want) and look at the resulting plot to make sure that the dimension you provided makes sense. For example, you can try:

phaseSpaceReconstruction(xdata, lag, dim);

Once you are satisfied with the lag and dim values, then use them in the correlationDimension command.

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet