• 大小: 7KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-07
  • 语言: 其他
  • 标签: lombscargle  matlab  

资源简介

从mathworks公司网站下载下来。lombscargle.m为待调用函数,inputtolomb.m为输入数据示例

资源截图

代码片段和文件信息

function indata = inputtolomb
%CREATE TEST DATA FOR lombscargle.m

%Create time points
t=[0:pi/32:8*pi];

%Keep random time points discard the rest
%Note: To increase the number of points retained decrease the multiplier (and vice versa)
discpct = 30; %Percent of data points to discard
ndiscards = floor((discpct/100)*length(t));
keeps = randperm(length(t));
keeps = sort(keeps(ndiscards+1:end)); %Discard 25% of the samples selected randomly
t=t(keeps);

%USER-SPECIFIED FREQUENCIES AND AMPLITUDES (for testing purposes)
%Frequencies (Hz) = [0.9  3.3  4.0  4.5]
%Amplitudes       = [2.0  1.8  3.0  1.5]
foft = 2.0*sin(2*pi*0.9*t) + 1.8*sin(2*pi*3.3*t) + 3.0*sin(2*pi*4*t) + 1.5*sin(2*pi*4.5*t);
indata=[t‘ foft‘];
%lombscargle(indata);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         759  2014-09-16 16:45  inputtolomb.m
     文件       21681  2014-09-16 16:38  lombscargle.m

评论

共有 条评论