登录
首页 » C++ » GPSINS

GPSINS

于 2012-03-20 发布 文件大小:3173KB
0 215
下载积分: 1 下载次数: 489

代码说明:

  GPS/SINS松组合导航源代码,搞组合导航的可以参考(it is good for learning GPS and INS)

文件列表:

位置加速度匹配
..............\data_process.m,1764,2009-04-03
..............\Debug
..............\.....\GPS&SINS_LOOSE--gumingwu1.15.bsc,107520,2010-03-30
..............\.....\GPS&SINS_LOOSE--gumingwu1.15.exe,262249,2010-04-08
..............\.....\GPS&SINS_LOOSE--gumingwu1.15.ilk,369648,2010-04-08
..............\.....\GPS&SINS_LOOSE--gumingwu1.15.obj,78668,2010-04-08
..............\.....\GPS&SINS_LOOSE--gumingwu1.15.pch,308672,2010-03-31
..............\.....\GPS&SINS_LOOSE--gumingwu1.15.pdb,590848,2010-04-08
..............\.....\GPS&SINS_LOOSE--gumingwu1.15.sbr,0,2010-03-30
..............\.....\GPS&SINS_P_V--gumingwu1.15.obj,82050,2009-11-19
..............\.....\vc60.idb,50176,2010-04-08
..............\.....\vc60.pdb,61440,2010-04-08
..............\err.dat,91953,2010-04-08
..............\err1.dat,91556,2009-04-14
..............\err_co.dat,72330,2010-04-08
..............\GPS&SINS_LOOSE--gumingwu1.15.cpp,36480,2010-04-08
..............\GPS&SINS_LOOSE--gumingwu1.15.dsp,3667,2010-04-08
..............\GPS&SINS_LOOSE--gumingwu1.15.dsw,581,2010-04-08
..............\GPS&SINS_LOOSE--gumingwu1.15.ncb,74752,2010-04-08
..............\GPS&SINS_LOOSE--gumingwu1.15.opt,48640,2010-04-08
..............\GPS&SINS_LOOSE--gumingwu1.15.plg,856,2010-04-08
..............\high_err.dat,12528,2009-04-03
..............\high_user.dat,11138,2009-11-04
..............\ins1.txt,795907,2009-01-13
..............\ins2.txt,5818658,2009-01-13
..............\kalmandata1.asv,5066,2009-04-03
..............\kalmandata1.m,5072,2009-04-03
..............\latit_err.dat,12510,2009-04-07
..............\latit_user.dat,11138,2009-11-04
..............\longi_err.dat,12528,2009-04-03
..............\longi_user.dat,11138,2009-11-04
..............\Pkk.dat,148035,2010-04-08
..............\Ve.dat,12546,2009-11-04
..............\Vn.dat,12546,2009-11-04
..............\Vu.dat,12546,2009-11-04
..............\Xkk0_4.dat,91408,2010-04-08
..............\Xkk5_.dat,61147,2010-04-08
..............\Zh.dat,10820,2010-04-08
..............\Zla.dat,10804,2010-04-08
..............\Zlg.dat,10790,2010-04-08
..............\位置误差.fig,39749,2009-04-03
..............\姿态误差.fig,31088,2009-04-03
..............\说明.doc,26112,2009-04-15
..............\速度误差.fig,52807,2009-04-03

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • esc-program
    非常实用的电调程序,已经通过小车电调测试(esc program)
    2014-03-04 10:00:02下载
    积分:1
  • C#自动更新服务(本地服务安装)
    using System;using System.Collections.Generic;using System.Linq;using System.Text;using Common.WinService;using Common.Log;using System.Threading;using Common.Net;using System.Text.RegularExpressions;namespace Collection.AutoRunner{    //获取学生信息    public class Service_Update_Data : IWindowsService    {        private ILogWriter _logWriter = null;        private const string logCategory = "Services.Info";        private string logInfoSource = "Update_Data";        private const string logErrorCategory = "Services.Error";        private const string logErrorSource = "Update_Data_Error";        private bool BeStop = true;        private System.Timers.Timer timer = null;        public void Start(Common.Log.ILogWriter logWriter, string gameCode)        {            gameCode = gameCode.ToUpper();            logInfoSource = gameCode;            _logWriter = logWriter;            BeStop = false;            StartRequestData();        }        int stata = 0;        private void StartRequestData()        {            try            {                #region 配置                //时间频率                var UpdateStudentSpan = ServiceHelper.GetInterval("UpdateData");                //更新学生开始时间                var studentbegintime = ServiceHelper.GetInterval("StudentBeginTime");                //更新学生结束时间                var studentendtime = ServiceHelper.GetInterval("StudentEndTime");                    //是否更新学生基本信息:true为更新 false为不更新                var IsUpdateStudnet =Convert.ToBoolean(ServiceHelper.GetSystemConfig("IsUpdateStudnet"));                                #endregion                timer = ServiceHelper.ExcuteByTimer(UpdateStudentSpan, () =>                {                    int timeHour = DateTime.Now.Hour;                    if (timeHour == 3)                        stata = 0;                    #region 更新学生基本信息                    if (studentbegintime
    2015-03-11下载
    积分:1
  • CPP
    钱能C++程序设计教程第二版课后答案,经典书籍,包括完整的源代码(Money to C++ programming tutorial answer the second edition after-school, classic books, including full source code)
    2011-11-29 21:37:23下载
    积分:1
  • asio
    ASIO小例子 可以看看ASIO 到底是怎么用的(ASIO for testasio)
    2014-05-02 10:21:07下载
    积分:1
  • modelsimse
    fpga仿真器modelsim6.5种子(modelsim6.5 seed)
    2013-04-05 23:27:19下载
    积分:1
  • Motor_state_check
    这是一个在电动机运行状态的逻辑运算中常用的状态检测原理的例程。它根据电动机负载的大小和外部开关状态共同判断当前电动机的状态。(This is a motor running in the logical operations commonly used in the principle of state detection routines. It according to the size of the motor load and external switches to determine the current state of the common motor state.)
    2009-02-04 16:17:20下载
    积分:1
  • FftTest
    这是一个介绍vc 和matlab混合接口编程的实例,主要是在vc下面调用matlab里的各个库。(This is a example of introducing vc and matlab programing , it call matlab s function in visual C++.)
    2021-03-04 19:49:32下载
    积分:1
  • Modbus协议中文版(比较完善)
    说明:  Modbus协议中文版,比较完善,仅供学习参考(Chinese version of Modbus Protoco)
    2020-03-07 09:04:26下载
    积分:1
  • CCS6.0Graphdisplayset显示波形设置实例
    设置Graph模块的例程,查看DSP中的变量变化情况,适合初学者。(See how the variables in the DSP change.)
    2018-05-08 16:51:57下载
    积分:1
  • ADO+Access
    VC和ADO以及ACCESS连接的典型例子。不仅展示了VC如何通过ADO连接MDB文件,同时也有其它技巧展示。(VC and ADO and ACCESS connecting a typical example. It not only demonstrates how the VC ADO connection MDB documents, but also have other skills display.)
    2006-05-22 20:30:55下载
    积分:1
  • 696518资源总数
  • 106182会员总数
  • 24今日下载