• 大小: 46KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: 其他
  • 标签:

资源简介

程序自动生成一二期坐标,并根据设定的阈值,找出最大稳定点组。

资源截图

代码片段和文件信息

%this  m file puts createpoints.m and calculate.m together
%createpoints.m
%create the coordinate of first-stage annd second-stage observationand
%their covariance matris.
clc
clear
close all
warning off all
format long
l = 10;  %the number of points
a = rand(l3);
b = [a(:1:2) * 1000 + 3000 a(:3) * 20 + 20];   %the coordinate of first-stage observation
ab = (rand(l * 3l * 3) - 0.5) / 100;
Db = ab; %the covariance matrix of first-stage observation
for count = 1 : l * 3
    Db(countcount) = 1;
end
for count1 = 2 : l * 3
    for count2 = 1 : (count1 -1)
        Db(count1count2) = Db(count2count1);
    end
end
T1 = 5;   %seven prameters
T2 = 5;
T3 = 10;
gamma1 = 0.001;
gamma2 = 0.002;
gamma3 = 0.002;
D = 0.001;
for count = 1:l    %the coordinate of second-

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-08-12 12:43  相对稳定点组判别程序matlab\
     文件         227  2014-06-27 09:20  相对稳定点组判别程序matlab\explaination.txt
     文件        5021  2014-06-27 09:23  相对稳定点组判别程序matlab\guo.m
     文件       69120  2014-07-24 17:03  相对稳定点组判别程序matlab\相对稳定点判别步骤.doc

评论

共有 条评论

相关资源