• 大小: 0.86M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: C#
  • 标签: c#  

资源简介


用C#开发的空间后方交会程序,可以实现任意次迭代来求得外方位元素

资源截图

代码片段和文件信息

using System;
using System.IO;
using System.Diagnostics;


namespace HuanMatrix
{
    /**/
    /// 
    /// Matrix 的摘要说明。
    /// 实现矩阵的基本运算
    /// 

    public class Matrix
    {

        //私有数据成员
        private double[] m_data;

        /// 
        /// 构造方法
        /// 

        /// 矩阵的行数
        public Matrix(int row)
        {
            m_data = new double[row row];

        }
        /// 
        /// 构造方法
        /// 

        /// 矩阵的行数
        /// 矩阵的列数
        public Matrix(int row int col)
        {
            m_data = new double[row col];
        }
        /// 
        /// 复制构造函数
        /// 

        /// 输入一个矩阵
        public Matrix(Matrix m)
        {
            int row = m.Row;
            int col = m.Col;
            m_data = new double[row col];

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2366  2009-11-22 11:34  摄影测量学程序\摄影测量学程序.sln

    ..A..H.     30720  2009-12-02 18:22  摄影测量学程序\摄影测量学程序.suo

     文件        502  2009-11-21 11:45  摄影测量学程序\摄影测量学程序\Program.cs

     文件       4278  2009-11-22 18:16  摄影测量学程序\摄影测量学程序\摄影测量学程序.csproj

     文件        766  2009-11-21 14:29  摄影测量学程序\摄影测量学程序\未命名.ico

     文件       1410  2009-11-21 11:45  摄影测量学程序\摄影测量学程序\Properties\AssemblyInfo.cs

     文件       2892  2009-11-21 11:45  摄影测量学程序\摄影测量学程序\Properties\Resources.Designer.cs

     文件       5612  2009-11-21 11:45  摄影测量学程序\摄影测量学程序\Properties\Resources.resx

     文件       1106  2009-11-21 11:45  摄影测量学程序\摄影测量学程序\Properties\Settings.Designer.cs

     文件        249  2009-11-21 11:45  摄影测量学程序\摄影测量学程序\Properties\Settings.settings

     文件       4731  2009-12-02 18:14  摄影测量学程序\摄影测量学程序\obj\Debug\摄影测量学程序.csproj.FileListAbsolute.txt

     文件      29184  2009-12-02 18:22  摄影测量学程序\摄影测量学程序\obj\Debug\摄影测量学程序.exe

     文件       1332  2009-12-02 18:22  摄影测量学程序\摄影测量学程序\obj\Debug\摄影测量学程序.Form1.resources

     文件      54784  2009-12-02 18:22  摄影测量学程序\摄影测量学程序\obj\Debug\摄影测量学程序.pdb

     文件        180  2009-11-22 18:16  摄影测量学程序\摄影测量学程序\obj\Debug\摄影测量学程序.Properties.Resources.resources

     文件      15583  2009-12-02 13:10  摄影测量学程序\摄影测量学程序\obj\Debug\ResolveAssemblyReference.cache

     文件        847  2009-12-02 18:22  摄影测量学程序\摄影测量学程序\obj\Debug\摄影测量学程序.csproj.GenerateResource.Cache

     文件    2424832  2007-04-24 08:57  摄影测量学程序\摄影测量学程序\bin\Debug\DevComponents.DotNetBar.dll

     文件       8704  2009-11-22 17:59  摄影测量学程序\摄影测量学程序\bin\Debug\Matrix.dll

     文件      28160  2009-11-22 17:59  摄影测量学程序\摄影测量学程序\bin\Debug\Matrix.pdb

     文件        131  2009-11-23 22:45  摄影测量学程序\摄影测量学程序\bin\Debug\Matrix.xml

     文件       5868  2009-11-21 14:02  摄影测量学程序\摄影测量学程序\bin\Debug\头像.jpg

     文件      29184  2009-12-02 18:22  摄影测量学程序\摄影测量学程序\bin\Debug\摄影测量学程序.exe

     文件      54784  2009-12-02 18:22  摄影测量学程序\摄影测量学程序\bin\Debug\摄影测量学程序.pdb

     文件      14328  2009-12-02 18:14  摄影测量学程序\摄影测量学程序\bin\Debug\摄影测量学程序.vshost.exe

     文件        490  2007-07-21 01:33  摄影测量学程序\摄影测量学程序\bin\Debug\摄影测量学程序.vshost.exe.manifest

     文件        766  2009-11-21 14:28  摄影测量学程序\摄影测量学程序\bin\Debug\未命名.ico

     文件      17408  2009-11-23 21:50  摄影测量学程序\摄影测量学程序\bin\Debug\测试数据.xls

     文件      20480  2009-12-02 13:14  摄影测量学程序\摄影测量学程序\bin\Debug\测试数据修改.xls

     文件       7815  2009-12-02 18:22  摄影测量学程序\摄影测量学程序\Form1.resx

............此处省略72个文件信息

评论

共有 条评论