これが私がやろうとしていることです。次の図(位相空間プロットと呼ばれます)があります。
位相空間図http://www.thestudentroom.co.uk/attachment.php?attachmentid=185627&d=1354917185
私がフォローしている論文は言う:
信号の位相空間プロットを20x20の正方形のグリッドに分割し、正方形内の点の数c(i、j)を計算して、位相空間密度行列cを作成しました。
上記を行うために、次のコードを試しました。
%%matrix(1,:) Is the first row and all columns. This row has the actual signal of
%interest and corresponds to the x axis of the above graph.
and is the x axis of the above graph.
%matrix(2,:) Is the second row and all columns and comprises of the y axis of the
above graph.
for i=1:180:size(matrix,2)
for j=1: 180 : size(matrix,2)
if isnan(matrix(1,i))
else
c(1,i)=matrix(1,i);
end
if isnan(matrix(2,i))
else
c(2,i)=matrix(2,j);
end
end
end
figure,plot(c)
出力は次のとおりです。
私はこのようなものを手に入れるつもりです:
紙http://www.thestudentroom.co.uk/attachment.php?attachmentid=185629&d=1354918102
LHSは位相空間図であり、RHSは私が到達しようとしているそれぞれのプロットに対応しています。
plzを助けて!
とてもありがたいです。
ありがとう!