How to count the total interruption?
1 回表示 (過去 30 日間)
古いコメントを表示
figure(1)
plot(a,b,'r*','Markersize',1);
xlabel('Epoch')
ylabel('PRN')
title('Satellite Visibility from Javed Receiver 1');
Hello
I have plot a signal in which i am getting some interruption. Plot is of total number of visible satellite on y-axis and total number of epoch on x-axis. So I am getting graph as attached.
4 件のコメント
Adam Danz
2020 年 4 月 30 日
The variables you're plotting are 'a' and 'b'. Check for NaN values in both using isnan().
回答 (1 件)
KSSV
2020 年 5 月 1 日
There are no NaN's in the data. To get the breaks/ interruption you can get the successuve distances and find the ditances which are greater then the resolution.
a, b are your point arrays.
da = diff(a) ;
db = diff(b) ;
d = sqrt(da.^2+db.^2) ;
iwant = nnz(d>1) ; % I assume if the points are continuous the distance should be 1.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で CubeSat and Satellites についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!